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

58 lines
1.7 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class PbV {
public final int a;
public final String b;
public final String c;
public final String d;
public final String e;
public PbV(int i, String str, String str2, String str3, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
this.a = i;
this.d = str;
this.b = str2;
this.e = str3;
this.c = str4;
}
public final String toString() {
int i = this.a;
String str = this.d;
String str2 = this.b;
String str3 = this.e;
String str4 = this.c;
StringBuilder sb = new StringBuilder("HmlBusinessAccount(id=");
sb.append(i);
sb.append(", bankCode=");
sb.append(str);
sb.append(", bankAbbrev=");
sb.append(str2);
sb.append(", bankLogo=");
sb.append(str3);
sb.append(", accountNo=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((Integer.hashCode(this.a) * 31) + this.d.hashCode()) * 31) + this.b.hashCode()) * 31) + this.e.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof PbV)) {
return false;
}
PbV pbV = (PbV) obj;
return this.a == pbV.a && C14957gcv.b((Object) this.d, (Object) pbV.d) && C14957gcv.b((Object) this.b, (Object) pbV.b) && C14957gcv.b((Object) this.e, (Object) pbV.e) && C14957gcv.b((Object) this.c, (Object) pbV.c);
}
}