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

92 lines
2.9 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class MX {
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
public final int g;
public boolean h;
public final MT j;
public /* synthetic */ MX(int i, String str, String str2, String str3, String str4, String str5, MT mt) {
this(i, str, str2, str3, str4, str5, mt, (byte) 0);
}
private MX(int i, String str, String str2, String str3, String str4, String str5, MT mt, byte b) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
C14957gcv.e(str5, "");
C14957gcv.e(mt, "");
this.g = i;
this.e = str;
this.c = str2;
this.d = str3;
this.b = str4;
this.a = str5;
this.j = mt;
this.h = false;
}
public final String toString() {
int i = this.g;
String str = this.e;
String str2 = this.c;
String str3 = this.d;
String str4 = this.b;
String str5 = this.a;
MT mt = this.j;
boolean z = this.h;
StringBuilder sb = new StringBuilder("HmlBusinessAccountDisplay(id=");
sb.append(i);
sb.append(", bankCode=");
sb.append(str);
sb.append(", bankLogo=");
sb.append(str2);
sb.append(", bankAbbrev=");
sb.append(str3);
sb.append(", accountNo=");
sb.append(str4);
sb.append(", formattedAccount=");
sb.append(str5);
sb.append(", type=");
sb.append(mt);
sb.append(", hasError=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = Integer.hashCode(this.g);
int hashCode2 = this.e.hashCode();
int hashCode3 = this.c.hashCode();
int hashCode4 = this.d.hashCode();
int hashCode5 = this.b.hashCode();
int hashCode6 = this.a.hashCode();
int hashCode7 = this.j.hashCode();
boolean z = this.h;
int i = z;
if (z != 0) {
i = 1;
}
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MX)) {
return false;
}
MX mx = (MX) obj;
return this.g == mx.g && C14957gcv.b((Object) this.e, (Object) mx.e) && C14957gcv.b((Object) this.c, (Object) mx.c) && C14957gcv.b((Object) this.d, (Object) mx.d) && C14957gcv.b((Object) this.b, (Object) mx.b) && C14957gcv.b((Object) this.a, (Object) mx.a) && this.j == mx.j && this.h == mx.h;
}
}