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

46 lines
1.2 KiB
Java

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