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

184 lines
5.7 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class DBx {
@SerializedName("principal")
public final double a;
@SerializedName("installment")
public final HBt b;
@SerializedName("dutyStampFee")
public final LWm c;
@SerializedName("annualInterest")
public final double d;
@SerializedName("duration")
public final String e;
@SerializedName("repaymentStartDate")
public final String f;
@SerializedName("tierRateList")
public final List<C17505xNA> h;
@SerializedName("productCatalogue")
public final huP j;
/* loaded from: classes3.dex */
public static final class HBt {
@SerializedName("minAmount")
public final String a;
@SerializedName("amount")
public final String b;
@SerializedName("frequency")
public final String c;
@SerializedName("maxAmount")
public final String d;
@SerializedName("perUnit")
public final String e;
@SerializedName("unit")
public final String i;
public final String toString() {
String str = this.b;
String str2 = this.c;
String str3 = this.e;
String str4 = this.i;
String str5 = this.a;
String str6 = this.d;
StringBuilder sb = new StringBuilder("Installment(amount=");
sb.append(str);
sb.append(", frequency=");
sb.append(str2);
sb.append(", perUnit=");
sb.append(str3);
sb.append(", unit=");
sb.append(str4);
sb.append(", minAmount=");
sb.append(str5);
sb.append(", maxAmount=");
sb.append(str6);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
return ((((((((((str == null ? 0 : str.hashCode()) * 31) + this.c.hashCode()) * 31) + this.e.hashCode()) * 31) + this.i.hashCode()) * 31) + this.a.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof HBt)) {
return false;
}
HBt hBt = (HBt) obj;
return C14957gcv.b((Object) this.b, (Object) hBt.b) && C14957gcv.b((Object) this.c, (Object) hBt.c) && C14957gcv.b((Object) this.e, (Object) hBt.e) && C14957gcv.b((Object) this.i, (Object) hBt.i) && C14957gcv.b((Object) this.a, (Object) hBt.a) && C14957gcv.b((Object) this.d, (Object) hBt.d);
}
}
/* loaded from: classes3.dex */
public static final class LWm {
@SerializedName("rate")
public final String b;
@SerializedName("maxAmount")
public final String c;
public final String toString() {
String str = this.b;
String str2 = this.c;
StringBuilder sb = new StringBuilder("DutyStamp(rate=");
sb.append(str);
sb.append(", maxAmount=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.b.hashCode() * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof LWm)) {
return false;
}
LWm lWm = (LWm) obj;
return C14957gcv.b((Object) this.b, (Object) lWm.b) && C14957gcv.b((Object) this.c, (Object) lWm.c);
}
}
public final String toString() {
double d = this.a;
String str = this.e;
HBt hBt = this.b;
double d2 = this.d;
String str2 = this.f;
List<C17505xNA> list = this.h;
huP hup = this.j;
LWm lWm = this.c;
StringBuilder sb = new StringBuilder("HmlCalculateLoanEntity(principal=");
sb.append(d);
sb.append(", duration=");
sb.append(str);
sb.append(", installment=");
sb.append(hBt);
sb.append(", annualInterest=");
sb.append(d2);
sb.append(", repaymentStartDate=");
sb.append(str2);
sb.append(", tierRateList=");
sb.append(list);
sb.append(", productCatalogue=");
sb.append(hup);
sb.append(", dutyStampFee=");
sb.append(lWm);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Double.hashCode(this.a);
String str = this.e;
int hashCode2 = str == null ? 0 : str.hashCode();
int hashCode3 = this.b.hashCode();
int hashCode4 = Double.hashCode(this.d);
String str2 = this.f;
int hashCode5 = str2 == null ? 0 : str2.hashCode();
int hashCode6 = this.h.hashCode();
int hashCode7 = this.j.hashCode();
LWm lWm = this.c;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (lWm != null ? lWm.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof DBx)) {
return false;
}
DBx dBx = (DBx) obj;
return Double.compare(this.a, dBx.a) == 0 && C14957gcv.b((Object) this.e, (Object) dBx.e) && C14957gcv.b(this.b, dBx.b) && Double.compare(this.d, dBx.d) == 0 && C14957gcv.b((Object) this.f, (Object) dBx.f) && C14957gcv.b(this.h, dBx.h) && C14957gcv.b(this.j, dBx.j) && C14957gcv.b(this.c, dBx.c);
}
}