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

52 lines
1.5 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class dGW {
private final String a;
public final int b;
public final String c;
public final String e;
public dGW(int i, String str, String str2, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.b = i;
this.e = str;
this.a = str2;
this.c = str3;
}
public final String toString() {
int i = this.b;
String str = this.e;
String str2 = this.a;
String str3 = this.c;
StringBuilder sb = new StringBuilder("StatementAccount(sortSequence=");
sb.append(i);
sb.append(", accountNumbers=");
sb.append(str);
sb.append(", accountType=");
sb.append(str2);
sb.append(", productType=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((Integer.hashCode(this.b) * 31) + this.e.hashCode()) * 31) + this.a.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof dGW)) {
return false;
}
dGW dgw = (dGW) obj;
return this.b == dgw.b && C14957gcv.b((Object) this.e, (Object) dgw.e) && C14957gcv.b((Object) this.a, (Object) dgw.a) && C14957gcv.b((Object) this.c, (Object) dgw.c);
}
}