package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public final class HP implements Parcelable { public static final IeS CREATOR = new IeS(0); public final String a; public final String b; public final String c; public final String d; public final String e; public final String i; @Override // android.os.Parcelable public final int describeContents() { return 0; } public HP(String str, String str2, String str3, String str4, String str5, String str6) { this.b = str; this.d = str2; this.a = str3; this.c = str4; this.i = str5; this.e = str6; } /* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */ public HP(Parcel parcel) { this(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString()); C14957gcv.e(parcel, ""); } @Override // android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { C14957gcv.e(parcel, ""); parcel.writeString(this.b); parcel.writeString(this.d); parcel.writeString(this.a); parcel.writeString(this.c); parcel.writeString(this.i); parcel.writeString(this.e); } /* loaded from: classes3.dex */ public static final class IeS implements Parcelable.Creator { private IeS() { } @Override // android.os.Parcelable.Creator public final /* synthetic */ HP createFromParcel(Parcel parcel) { C14957gcv.e(parcel, ""); return new HP(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ HP[] newArray(int i) { return new HP[i]; } public /* synthetic */ IeS(byte b) { this(); } } public final String toString() { String str = this.b; String str2 = this.d; String str3 = this.a; String str4 = this.c; String str5 = this.i; String str6 = this.e; StringBuilder sb = new StringBuilder("MerchantInfoDisplay(id="); sb.append(str); sb.append(", name="); sb.append(str2); sb.append(", code="); sb.append(str3); sb.append(", terminal="); sb.append(str4); sb.append(", urlLogo="); sb.append(str5); sb.append(", referenceOrder="); sb.append(str6); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.b; int hashCode = str == null ? 0 : str.hashCode(); String str2 = this.d; int hashCode2 = str2 == null ? 0 : str2.hashCode(); String str3 = this.a; int hashCode3 = str3 == null ? 0 : str3.hashCode(); String str4 = this.c; int hashCode4 = str4 == null ? 0 : str4.hashCode(); String str5 = this.i; int hashCode5 = str5 == null ? 0 : str5.hashCode(); String str6 = this.e; return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str6 != null ? str6.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof HP)) { return false; } HP hp = (HP) obj; return C14957gcv.b((Object) this.b, (Object) hp.b) && C14957gcv.b((Object) this.d, (Object) hp.d) && C14957gcv.b((Object) this.a, (Object) hp.a) && C14957gcv.b((Object) this.c, (Object) hp.c) && C14957gcv.b((Object) this.i, (Object) hp.i) && C14957gcv.b((Object) this.e, (Object) hp.e); } }