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

63 lines
1.6 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.t, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C17000t {
@SerializedName("tokenUuid")
public final String b;
@SerializedName("isNcbAccepted")
public final boolean c;
@SerializedName("otp")
public final String e;
public C17000t(String str, String str2, boolean z) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.e = str;
this.b = str2;
this.c = z;
}
public final String toString() {
String str = this.e;
String str2 = this.b;
boolean z = this.c;
StringBuilder sb = new StringBuilder("HmlEtbOtpConfirmationRequest(otp=");
sb.append(str);
sb.append(", tokenUuid=");
sb.append(str2);
sb.append(", isNcbAccepted=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.e.hashCode();
int hashCode2 = this.b.hashCode();
boolean z = this.c;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + hashCode2) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C17000t)) {
return false;
}
C17000t c17000t = (C17000t) obj;
return C14957gcv.b((Object) this.e, (Object) c17000t.e) && C14957gcv.b((Object) this.b, (Object) c17000t.b) && this.c == c17000t.c;
}
}