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

133 lines
4.6 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.Vg, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C1086Vg implements Parcelable {
public static final Parcelable.Creator<C1086Vg> CREATOR = new LWm();
public boolean a;
public String b;
public boolean c;
public int d;
public String e;
public String g;
private String h;
private String i;
public String j;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public C1086Vg(String str, String str2, int i, String str3, String str4, String str5, String str6, boolean z, boolean z2) {
this.i = str;
this.j = str2;
this.d = i;
this.h = str3;
this.g = str4;
this.e = str5;
this.b = str6;
this.a = z;
this.c = z2;
}
/* renamed from: o.Vg$LWm */
/* loaded from: classes3.dex */
public static final class LWm implements Parcelable.Creator<C1086Vg> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C1086Vg createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new C1086Vg(parcel.readString(), parcel.readString(), parcel.readInt(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readInt() != 0, parcel.readInt() != 0);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C1086Vg[] newArray(int i) {
return new C1086Vg[i];
}
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeString(this.i);
parcel.writeString(this.j);
parcel.writeInt(this.d);
parcel.writeString(this.h);
parcel.writeString(this.g);
parcel.writeString(this.e);
parcel.writeString(this.b);
parcel.writeInt(this.a ? 1 : 0);
parcel.writeInt(this.c ? 1 : 0);
}
public final String toString() {
String str = this.i;
String str2 = this.j;
int i = this.d;
String str3 = this.h;
String str4 = this.g;
String str5 = this.e;
String str6 = this.b;
boolean z = this.a;
boolean z2 = this.c;
StringBuilder sb = new StringBuilder("UnlinkAccountDisplay(accountNumber=");
sb.append(str);
sb.append(", maskedAccountNumber=");
sb.append(str2);
sb.append(", accountType=");
sb.append(i);
sb.append(", linkedAccountNumber=");
sb.append(str3);
sb.append(", maskedLinkedAccountNumber=");
sb.append(str4);
sb.append(", linkedAccountType=");
sb.append(str5);
sb.append(", accountNickname=");
sb.append(str6);
sb.append(", isRtpFlag=");
sb.append(z);
sb.append(", isBillRtpFlag=");
sb.append(z2);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
String str = this.i;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.j;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
int hashCode3 = Integer.hashCode(this.d);
String str3 = this.h;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.g;
int hashCode5 = str4 == null ? 0 : str4.hashCode();
String str5 = this.e;
int hashCode6 = str5 == null ? 0 : str5.hashCode();
String str6 = this.b;
int hashCode7 = str6 != null ? str6.hashCode() : 0;
boolean z = this.a;
int i = z;
if (z != 0) {
i = 1;
}
boolean z2 = this.c;
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + i) * 31) + (z2 ? 1 : z2 ? 1 : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C1086Vg)) {
return false;
}
C1086Vg c1086Vg = (C1086Vg) obj;
return C14957gcv.b((Object) this.i, (Object) c1086Vg.i) && C14957gcv.b((Object) this.j, (Object) c1086Vg.j) && this.d == c1086Vg.d && C14957gcv.b((Object) this.h, (Object) c1086Vg.h) && C14957gcv.b((Object) this.g, (Object) c1086Vg.g) && C14957gcv.b((Object) this.e, (Object) c1086Vg.e) && C14957gcv.b((Object) this.b, (Object) c1086Vg.b) && this.a == c1086Vg.a && this.c == c1086Vg.c;
}
}