80 lines
2.1 KiB
Java
80 lines
2.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class OfM {
|
|
|
|
@SerializedName("repaymentAccountNo")
|
|
private final String a;
|
|
|
|
@SerializedName("applicationUuid")
|
|
private final String b;
|
|
|
|
@SerializedName("receivingAccountNo")
|
|
private final String d;
|
|
|
|
@SerializedName("repaymentMethod")
|
|
private final String e;
|
|
|
|
public OfM(String str, String str2, String str3, String str4) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.b = str;
|
|
this.d = str2;
|
|
this.a = str3;
|
|
this.e = str4;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm {
|
|
private LWm() {
|
|
}
|
|
|
|
public /* synthetic */ LWm(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.d;
|
|
String str3 = this.a;
|
|
String str4 = this.e;
|
|
StringBuilder sb = new StringBuilder("HmlConfirmSetupRequest(applicationUuid=");
|
|
sb.append(str);
|
|
sb.append(", receivingAccount=");
|
|
sb.append(str2);
|
|
sb.append(", repaymentAccount=");
|
|
sb.append(str3);
|
|
sb.append(", repaymentMethod=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.b.hashCode();
|
|
int hashCode2 = this.d.hashCode();
|
|
String str = this.a;
|
|
int hashCode3 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof OfM)) {
|
|
return false;
|
|
}
|
|
OfM ofM = (OfM) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) ofM.b) && C14957gcv.b((Object) this.d, (Object) ofM.d) && C14957gcv.b((Object) this.a, (Object) ofM.a) && C14957gcv.b((Object) this.e, (Object) ofM.e);
|
|
}
|
|
|
|
static {
|
|
new LWm((byte) 0);
|
|
}
|
|
}
|