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

117 lines
4.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Op, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0787Op extends OB {
public static final Parcelable.Creator<C0787Op> CREATOR = new HBt();
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
public final String g;
public final String h;
public final String j;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public C0787Op(String str, String str2, String str3, String str4, String str5, String str6, String str7, String str8) {
super((byte) 0);
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.g = str;
this.a = str2;
this.d = str3;
this.j = str4;
this.h = str5;
this.e = str6;
this.b = str7;
this.c = str8;
}
/* renamed from: o.Op$HBt */
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<C0787Op> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0787Op createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new C0787Op(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0787Op[] newArray(int i) {
return new C0787Op[i];
}
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0787Op)) {
return false;
}
C0787Op c0787Op = (C0787Op) obj;
return C14957gcv.b((Object) this.g, (Object) c0787Op.g) && C14957gcv.b((Object) this.a, (Object) c0787Op.a) && C14957gcv.b((Object) this.d, (Object) c0787Op.d) && C14957gcv.b((Object) this.j, (Object) c0787Op.j) && C14957gcv.b((Object) this.h, (Object) c0787Op.h) && C14957gcv.b((Object) this.e, (Object) c0787Op.e) && C14957gcv.b((Object) this.b, (Object) c0787Op.b) && C14957gcv.b((Object) this.c, (Object) c0787Op.c);
}
public final int hashCode() {
return (((((((((((((this.g.hashCode() * 31) + this.a.hashCode()) * 31) + this.d.hashCode()) * 31) + this.j.hashCode()) * 31) + this.h.hashCode()) * 31) + this.e.hashCode()) * 31) + this.b.hashCode()) * 31) + this.c.hashCode();
}
public final String toString() {
String str = this.g;
String str2 = this.a;
String str3 = this.d;
String str4 = this.j;
String str5 = this.h;
String str6 = this.e;
String str7 = this.b;
String str8 = this.c;
StringBuilder sb = new StringBuilder("CarPaymentDetailDisplay(policyRenewal=");
sb.append(str);
sb.append(", insuranceType=");
sb.append(str2);
sb.append(", carRepairType=");
sb.append(str3);
sb.append(", renewalSumAssured=");
sb.append(str4);
sb.append(", premiumAmount=");
sb.append(str5);
sb.append(", dueDate=");
sb.append(str6);
sb.append(", dueAmount=");
sb.append(str7);
sb.append(", description=");
sb.append(str8);
sb.append(")");
return sb.toString();
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeString(this.g);
parcel.writeString(this.a);
parcel.writeString(this.d);
parcel.writeString(this.j);
parcel.writeString(this.h);
parcel.writeString(this.e);
parcel.writeString(this.b);
parcel.writeString(this.c);
}
}