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

124 lines
3.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 Flh {
@SerializedName("insuranceCompanyName")
public String a;
@SerializedName("insuranceCompanyCode")
public String b;
@SerializedName("expiredDate")
public String c;
@SerializedName("garageSelected")
public String d;
@SerializedName("insuranceTypeCode")
public String e;
@SerializedName("productType")
private String f;
@SerializedName("sumInsurance")
public String g;
@SerializedName("applicationId")
private String h;
@SerializedName("insuranceOption")
private String i;
@SerializedName("tilesVersion")
public String j;
public /* synthetic */ Flh(String str, String str2, String str3) {
this(str, "", str2, str3);
}
private Flh(String str, String str2, String str3, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
this.f = str;
this.j = str2;
this.h = str3;
this.i = str4;
this.b = null;
this.a = null;
this.e = null;
this.c = null;
this.g = null;
this.d = null;
}
public final String toString() {
String str = this.f;
String str2 = this.j;
String str3 = this.h;
String str4 = this.i;
String str5 = this.b;
String str6 = this.a;
String str7 = this.e;
String str8 = this.c;
String str9 = this.g;
String str10 = this.d;
StringBuilder sb = new StringBuilder("PostAutoInsuranceInfoUpdateRequest(productType=");
sb.append(str);
sb.append(", tilesVersion=");
sb.append(str2);
sb.append(", applicationId=");
sb.append(str3);
sb.append(", insuranceOption=");
sb.append(str4);
sb.append(", insuranceCompanyCode=");
sb.append(str5);
sb.append(", insuranceCompanyName=");
sb.append(str6);
sb.append(", insuranceTypeCode=");
sb.append(str7);
sb.append(", expiredDate=");
sb.append(str8);
sb.append(", sumInsurance=");
sb.append(str9);
sb.append(", garageSelected=");
sb.append(str10);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.f.hashCode();
int hashCode2 = this.j.hashCode();
int hashCode3 = this.h.hashCode();
int hashCode4 = this.i.hashCode();
String str = this.b;
int hashCode5 = str == null ? 0 : str.hashCode();
String str2 = this.a;
int hashCode6 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
int hashCode7 = str3 == null ? 0 : str3.hashCode();
String str4 = this.c;
int hashCode8 = str4 == null ? 0 : str4.hashCode();
String str5 = this.g;
int hashCode9 = str5 == null ? 0 : str5.hashCode();
String str6 = this.d;
return (((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + (str6 != null ? str6.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Flh)) {
return false;
}
Flh flh = (Flh) obj;
return C14957gcv.b((Object) this.f, (Object) flh.f) && C14957gcv.b((Object) this.j, (Object) flh.j) && C14957gcv.b((Object) this.h, (Object) flh.h) && C14957gcv.b((Object) this.i, (Object) flh.i) && C14957gcv.b((Object) this.b, (Object) flh.b) && C14957gcv.b((Object) this.a, (Object) flh.a) && C14957gcv.b((Object) this.e, (Object) flh.e) && C14957gcv.b((Object) this.c, (Object) flh.c) && C14957gcv.b((Object) this.g, (Object) flh.g) && C14957gcv.b((Object) this.d, (Object) flh.d);
}
}