67 lines
1.8 KiB
Java
67 lines
1.8 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JXS {
|
|
|
|
@SerializedName("tilesVersion")
|
|
public String a;
|
|
|
|
@SerializedName("insuranceType")
|
|
private String b;
|
|
|
|
@SerializedName("productType")
|
|
private String d;
|
|
|
|
@SerializedName("applicationId")
|
|
private String e;
|
|
|
|
public /* synthetic */ JXS(String str, String str2, String str3) {
|
|
this(str, str2, str3, "");
|
|
}
|
|
|
|
private JXS(String str, String str2, String str3, String str4) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
this.e = str;
|
|
this.b = str2;
|
|
this.d = str3;
|
|
this.a = str4;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.b;
|
|
String str3 = this.d;
|
|
String str4 = this.a;
|
|
StringBuilder sb = new StringBuilder("PostPackageInsuranceInquiryRequest(applicationId=");
|
|
sb.append(str);
|
|
sb.append(", insuranceType=");
|
|
sb.append(str2);
|
|
sb.append(", productType=");
|
|
sb.append(str3);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((this.e.hashCode() * 31) + this.b.hashCode()) * 31) + this.d.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof JXS)) {
|
|
return false;
|
|
}
|
|
JXS jxs = (JXS) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) jxs.e) && C14957gcv.b((Object) this.b, (Object) jxs.b) && C14957gcv.b((Object) this.d, (Object) jxs.d) && C14957gcv.b((Object) this.a, (Object) jxs.a);
|
|
}
|
|
}
|