package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public final class RL implements Parcelable { public static final RVV CREATOR = new RVV(0); private final String a; private final String b; private final String c; private final String d; private final String e; private final String g; @Override // android.os.Parcelable public final int describeContents() { return 0; } public RL(String str, String str2, String str3, String str4, String str5, String str6) { this.d = str; this.g = str2; this.a = str3; this.b = str4; this.c = str5; this.e = str6; } /* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */ public RL(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.d); parcel.writeString(this.g); parcel.writeString(this.a); parcel.writeString(this.b); parcel.writeString(this.c); parcel.writeString(this.e); } /* loaded from: classes3.dex */ public static final class RVV implements Parcelable.Creator { private RVV() { } @Override // android.os.Parcelable.Creator public final /* synthetic */ RL createFromParcel(Parcel parcel) { C14957gcv.e(parcel, ""); return new RL(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ RL[] newArray(int i) { return new RL[i]; } public /* synthetic */ RVV(byte b) { this(); } } public final String toString() { String str = this.d; String str2 = this.g; String str3 = this.a; String str4 = this.b; String str5 = this.c; String str6 = this.e; StringBuilder sb = new StringBuilder("MerchantWalletOwnerDisplay(firstNameTH="); sb.append(str); sb.append(", middleNameTH="); sb.append(str2); sb.append(", lastNameTH="); sb.append(str3); sb.append(", firstNameEN="); sb.append(str4); sb.append(", middleNameEN="); sb.append(str5); sb.append(", lastNameEN="); sb.append(str6); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.d; int hashCode = str == null ? 0 : str.hashCode(); String str2 = this.g; int hashCode2 = str2 == null ? 0 : str2.hashCode(); String str3 = this.a; int hashCode3 = str3 == null ? 0 : str3.hashCode(); String str4 = this.b; int hashCode4 = str4 == null ? 0 : str4.hashCode(); String str5 = this.c; 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 RL)) { return false; } RL rl = (RL) obj; return C14957gcv.b((Object) this.d, (Object) rl.d) && C14957gcv.b((Object) this.g, (Object) rl.g) && C14957gcv.b((Object) this.a, (Object) rl.a) && C14957gcv.b((Object) this.b, (Object) rl.b) && C14957gcv.b((Object) this.c, (Object) rl.c) && C14957gcv.b((Object) this.e, (Object) rl.e); } }