package o; import android.os.Parcel; import android.os.Parcelable; import java.util.ArrayList; import java.util.List; /* loaded from: classes3.dex */ public final class JU implements Parcelable { public static final Parcelable.Creator CREATOR = new RVV(); public final String a; public final String b; public final List c; public final String d; public final String e; public final Boolean h; @Override // android.os.Parcelable public final int describeContents() { return 0; } public JU(String str, Boolean bool, String str2, String str3, String str4, List list) { C14957gcv.e(list, ""); this.a = str; this.h = bool; this.e = str2; this.d = str3; this.b = str4; this.c = list; } /* loaded from: classes3.dex */ public static final class RVV implements Parcelable.Creator { @Override // android.os.Parcelable.Creator public final /* synthetic */ JU createFromParcel(Parcel parcel) { C14957gcv.e(parcel, ""); String readString = parcel.readString(); Boolean valueOf = parcel.readInt() == 0 ? null : Boolean.valueOf(parcel.readInt() != 0); String readString2 = parcel.readString(); String readString3 = parcel.readString(); String readString4 = parcel.readString(); int readInt = parcel.readInt(); ArrayList arrayList = new ArrayList(readInt); for (int i = 0; i != readInt; i++) { arrayList.add(parcel.readInt() == 0 ? null : JT.CREATOR.createFromParcel(parcel)); } return new JU(readString, valueOf, readString2, readString3, readString4, arrayList); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ JU[] newArray(int i) { return new JU[i]; } } @Override // android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { C14957gcv.e(parcel, ""); parcel.writeString(this.a); Boolean bool = this.h; if (bool == null) { parcel.writeInt(0); } else { parcel.writeInt(1); parcel.writeInt(bool.booleanValue() ? 1 : 0); } parcel.writeString(this.e); parcel.writeString(this.d); parcel.writeString(this.b); List list = this.c; parcel.writeInt(list.size()); for (JT jt : list) { if (jt == null) { parcel.writeInt(0); } else { parcel.writeInt(1); jt.writeToParcel(parcel, i); } } } public final String toString() { String str = this.a; Boolean bool = this.h; String str2 = this.e; String str3 = this.d; String str4 = this.b; List list = this.c; StringBuilder sb = new StringBuilder("EasycashAutoResultDisplay(isSuccess="); sb.append(str); sb.append(", ncbInquiredFlag="); sb.append(bool); sb.append(", header="); sb.append(str2); sb.append(", description="); sb.append(str3); sb.append(", loanInformation="); sb.append(str4); sb.append(", detail="); sb.append(list); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.a; int hashCode = str == null ? 0 : str.hashCode(); Boolean bool = this.h; int hashCode2 = bool == null ? 0 : bool.hashCode(); String str2 = this.e; int hashCode3 = str2 == null ? 0 : str2.hashCode(); String str3 = this.d; int hashCode4 = str3 == null ? 0 : str3.hashCode(); String str4 = this.b; return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str4 != null ? str4.hashCode() : 0)) * 31) + this.c.hashCode(); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof JU)) { return false; } JU ju = (JU) obj; return C14957gcv.b((Object) this.a, (Object) ju.a) && C14957gcv.b(this.h, ju.h) && C14957gcv.b((Object) this.e, (Object) ju.e) && C14957gcv.b((Object) this.d, (Object) ju.d) && C14957gcv.b((Object) this.b, (Object) ju.b) && C14957gcv.b(this.c, ju.c); } }