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

134 lines
4.5 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class RM extends EQ implements Parcelable {
public static final IeS CREATOR = new IeS(0);
public final String a;
public final String b;
public final String c;
public final RP d;
private final String f;
private final String g;
private final int h;
private final String i;
@Override // o.EQ, android.os.Parcelable
public final int describeContents() {
return 0;
}
public RM(int i, String str, String str2, String str3, String str4, String str5, String str6, RP rp) {
this.h = i;
this.g = str;
this.i = str2;
this.f = str3;
this.b = str4;
this.a = str5;
this.c = str6;
this.d = rp;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public RM(Parcel parcel) {
this(parcel.readInt(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), (RP) parcel.readParcelable(RP.class.getClassLoader()));
C14957gcv.e(parcel, "");
this.e = parcel.readInt() == 1;
}
@Override // o.EQ, android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeInt(this.h);
parcel.writeString(this.g);
parcel.writeString(this.i);
parcel.writeString(this.f);
parcel.writeString(this.b);
parcel.writeString(this.a);
parcel.writeString(this.c);
parcel.writeParcelable(this.d, i);
parcel.writeInt(this.e ? 1 : 0);
}
/* loaded from: classes3.dex */
public static final class IeS implements Parcelable.Creator<RM> {
private IeS() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ RM createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new RM(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ RM[] newArray(int i) {
return new RM[i];
}
public /* synthetic */ IeS(byte b) {
this();
}
}
public final String toString() {
int i = this.h;
String str = this.g;
String str2 = this.i;
String str3 = this.f;
String str4 = this.b;
String str5 = this.a;
String str6 = this.c;
RP rp = this.d;
StringBuilder sb = new StringBuilder("MerchantWalletSweepDetailDisplay(pageNumber=");
sb.append(i);
sb.append(", walletId=");
sb.append(str);
sb.append(", nickname=");
sb.append(str2);
sb.append(", productType=");
sb.append(str3);
sb.append(", linkedAccountNumber=");
sb.append(str4);
sb.append(", linkedAccountName=");
sb.append(str5);
sb.append(", linkedAccountType=");
sb.append(str6);
sb.append(", transactions=");
sb.append(rp);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.h);
String str = this.g;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.i;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.f;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.b;
int hashCode5 = str4 == null ? 0 : str4.hashCode();
String str5 = this.a;
int hashCode6 = str5 == null ? 0 : str5.hashCode();
String str6 = this.c;
int hashCode7 = str6 == null ? 0 : str6.hashCode();
RP rp = this.d;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (rp != null ? rp.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RM)) {
return false;
}
RM rm = (RM) obj;
return this.h == rm.h && C14957gcv.b((Object) this.g, (Object) rm.g) && C14957gcv.b((Object) this.i, (Object) rm.i) && C14957gcv.b((Object) this.f, (Object) rm.f) && C14957gcv.b((Object) this.b, (Object) rm.b) && C14957gcv.b((Object) this.a, (Object) rm.a) && C14957gcv.b((Object) this.c, (Object) rm.c) && C14957gcv.b(this.d, rm.d);
}
}