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

95 lines
2.9 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class SgN {
@SerializedName("duration")
public final String a;
@SerializedName("loanType")
public final String b;
@SerializedName("loanAmount")
public final String c;
@SerializedName("frontEndFeeAmount")
public final String d;
@SerializedName("applicationId")
public final String e;
@SerializedName("productProgram")
public final String f;
@SerializedName("tilesVersion")
private final String h;
@SerializedName("monthlyPayment")
public final String i;
public SgN(String str, String str2, String str3, String str4, String str5, String str6, String str7, String str8) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
C14957gcv.e(str5, "");
C14957gcv.e(str6, "");
C14957gcv.e(str7, "");
C14957gcv.e(str8, "");
this.h = str;
this.b = str2;
this.f = str3;
this.e = str4;
this.a = str5;
this.c = str6;
this.i = str7;
this.d = str8;
}
public final String toString() {
String str = this.h;
String str2 = this.b;
String str3 = this.f;
String str4 = this.e;
String str5 = this.a;
String str6 = this.c;
String str7 = this.i;
String str8 = this.d;
StringBuilder sb = new StringBuilder("PostCommercialDetailRequest(tilesVersion=");
sb.append(str);
sb.append(", loanType=");
sb.append(str2);
sb.append(", productProgram=");
sb.append(str3);
sb.append(", applicationId=");
sb.append(str4);
sb.append(", duration=");
sb.append(str5);
sb.append(", loanAmount=");
sb.append(str6);
sb.append(", monthlyPayment=");
sb.append(str7);
sb.append(", frontEndFeeAmount=");
sb.append(str8);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((((((this.h.hashCode() * 31) + this.b.hashCode()) * 31) + this.f.hashCode()) * 31) + this.e.hashCode()) * 31) + this.a.hashCode()) * 31) + this.c.hashCode()) * 31) + this.i.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof SgN)) {
return false;
}
SgN sgN = (SgN) obj;
return C14957gcv.b((Object) this.h, (Object) sgN.h) && C14957gcv.b((Object) this.b, (Object) sgN.b) && C14957gcv.b((Object) this.f, (Object) sgN.f) && C14957gcv.b((Object) this.e, (Object) sgN.e) && C14957gcv.b((Object) this.a, (Object) sgN.a) && C14957gcv.b((Object) this.c, (Object) sgN.c) && C14957gcv.b((Object) this.i, (Object) sgN.i) && C14957gcv.b((Object) this.d, (Object) sgN.d);
}
}