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

123 lines
3.9 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class MqT {
@SerializedName("annualInterestRate")
private String a;
@SerializedName("duration")
private String b;
@SerializedName("applicationId")
private String c;
@SerializedName("tilesVersion")
public String d;
@SerializedName("businessType")
private OYG e;
@SerializedName("productType")
private String f;
@SerializedName("purposeLoan")
private OYG g;
@SerializedName("loanAmount")
private String h;
@SerializedName("monthlyPayment")
private String i;
@SerializedName("isReferral")
private String j;
public /* synthetic */ MqT(String str, String str2, String str3, String str4, String str5, String str6, String str7, OYG oyg, OYG oyg2) {
this(str, str2, str3, str4, str5, str6, str7, oyg, oyg2, "");
}
private MqT(String str, String str2, String str3, String str4, String str5, String str6, String str7, OYG oyg, OYG oyg2, 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(oyg, "");
C14957gcv.e(str8, "");
this.f = str;
this.c = str2;
this.b = str3;
this.h = str4;
this.i = str5;
this.a = str6;
this.j = str7;
this.g = oyg;
this.e = oyg2;
this.d = str8;
}
public final String toString() {
String str = this.f;
String str2 = this.c;
String str3 = this.b;
String str4 = this.h;
String str5 = this.i;
String str6 = this.a;
String str7 = this.j;
OYG oyg = this.g;
OYG oyg2 = this.e;
String str8 = this.d;
StringBuilder sb = new StringBuilder("AutoDetailUpdateRequest(productType=");
sb.append(str);
sb.append(", applicationId=");
sb.append(str2);
sb.append(", duration=");
sb.append(str3);
sb.append(", loanAmount=");
sb.append(str4);
sb.append(", monthlyPayment=");
sb.append(str5);
sb.append(", annualInterestRate=");
sb.append(str6);
sb.append(", isReferral=");
sb.append(str7);
sb.append(", purposeLoan=");
sb.append(oyg);
sb.append(", businessType=");
sb.append(oyg2);
sb.append(", tilesVersion=");
sb.append(str8);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.f.hashCode();
int hashCode2 = this.c.hashCode();
int hashCode3 = this.b.hashCode();
int hashCode4 = this.h.hashCode();
int hashCode5 = this.i.hashCode();
int hashCode6 = this.a.hashCode();
int hashCode7 = this.j.hashCode();
int hashCode8 = this.g.hashCode();
OYG oyg = this.e;
return (((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (oyg == null ? 0 : oyg.hashCode())) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MqT)) {
return false;
}
MqT mqT = (MqT) obj;
return C14957gcv.b((Object) this.f, (Object) mqT.f) && C14957gcv.b((Object) this.c, (Object) mqT.c) && C14957gcv.b((Object) this.b, (Object) mqT.b) && C14957gcv.b((Object) this.h, (Object) mqT.h) && C14957gcv.b((Object) this.i, (Object) mqT.i) && C14957gcv.b((Object) this.a, (Object) mqT.a) && C14957gcv.b((Object) this.j, (Object) mqT.j) && C14957gcv.b(this.g, mqT.g) && C14957gcv.b(this.e, mqT.e) && C14957gcv.b((Object) this.d, (Object) mqT.d);
}
}