what-the-bank/sources/o/C10195dyG.java

66 lines
1.7 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.dyG, reason: case insensitive filesystem */
/* loaded from: classes.dex */
public final class C10195dyG {
@SerializedName("accountNo")
public String a;
@SerializedName("repaymentSelected")
public boolean b;
@SerializedName("prodPackageId")
public String d;
public C10195dyG(String str, String str2, boolean z) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.a = str;
this.d = str2;
this.b = z;
}
public /* synthetic */ C10195dyG() {
}
public final String toString() {
String str = this.a;
String str2 = this.d;
boolean z = this.b;
StringBuilder sb = new StringBuilder("LoanAccountVerification(accountNo=");
sb.append(str);
sb.append(", prodPackageId=");
sb.append(str2);
sb.append(", repaymentSelected=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.a.hashCode();
int hashCode2 = this.d.hashCode();
boolean z = this.b;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + hashCode2) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C10195dyG)) {
return false;
}
C10195dyG c10195dyG = (C10195dyG) obj;
return C14957gcv.b((Object) this.a, (Object) c10195dyG.a) && C14957gcv.b((Object) this.d, (Object) c10195dyG.d) && this.b == c10195dyG.b;
}
}