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

95 lines
3.1 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class IDx {
public final Double a;
public final String b;
public final boolean c;
public final Double d;
public final Integer e;
public final String f;
public final Integer g;
public final String i;
private final String j;
public IDx(String str, boolean z, String str2, String str3, String str4, Integer num, Integer num2, Double d, Double d2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.f = str;
this.c = z;
this.j = str2;
this.b = str3;
this.i = str4;
this.g = num;
this.e = num2;
this.d = d;
this.a = d2;
}
public final String toString() {
String str = this.f;
boolean z = this.c;
String str2 = this.j;
String str3 = this.b;
String str4 = this.i;
Integer num = this.g;
Integer num2 = this.e;
Double d = this.d;
Double d2 = this.a;
StringBuilder sb = new StringBuilder("BNPLLoanInfo(prodPackageId=");
sb.append(str);
sb.append(", availableLoanStatus=");
sb.append(z);
sb.append(", customerName=");
sb.append(str2);
sb.append(", deeplinkIntroduction=");
sb.append(str3);
sb.append(", deeplinkLanding=");
sb.append(str4);
sb.append(", toggleCoinSection=");
sb.append(num);
sb.append(", billerMinAmount=");
sb.append(num2);
sb.append(", billerMinCoin=");
sb.append(d);
sb.append(", billerMaxCoinPercentage=");
sb.append(d2);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.f.hashCode();
boolean z = this.c;
int i = z;
if (z != 0) {
i = 1;
}
int hashCode2 = this.j.hashCode();
String str = this.b;
int hashCode3 = str == null ? 0 : str.hashCode();
String str2 = this.i;
int hashCode4 = str2 == null ? 0 : str2.hashCode();
Integer num = this.g;
int hashCode5 = num == null ? 0 : num.hashCode();
Integer num2 = this.e;
int hashCode6 = num2 == null ? 0 : num2.hashCode();
Double d = this.d;
int hashCode7 = d == null ? 0 : d.hashCode();
Double d2 = this.a;
return (((((((((((((((hashCode * 31) + i) * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (d2 != null ? d2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IDx)) {
return false;
}
IDx iDx = (IDx) obj;
return C14957gcv.b((Object) this.f, (Object) iDx.f) && this.c == iDx.c && C14957gcv.b((Object) this.j, (Object) iDx.j) && C14957gcv.b((Object) this.b, (Object) iDx.b) && C14957gcv.b((Object) this.i, (Object) iDx.i) && C14957gcv.b(this.g, iDx.g) && C14957gcv.b(this.e, iDx.e) && C14957gcv.b(this.d, iDx.d) && C14957gcv.b(this.a, iDx.a);
}
}