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

62 lines
1.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.cM, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C6210cM {
@SerializedName("tilesVersion")
private final String a;
@SerializedName("transactionToken")
private final String c;
@SerializedName("isFaceValidate")
private final boolean e;
public C6210cM(String str, boolean z, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.c = str;
this.e = z;
this.a = str2;
}
public final String toString() {
String str = this.c;
boolean z = this.e;
String str2 = this.a;
StringBuilder sb = new StringBuilder("PayNowConfirmationRequest(transactionToken=");
sb.append(str);
sb.append(", isFaceValidate=");
sb.append(z);
sb.append(", tilesVersion=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.c.hashCode();
boolean z = this.e;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + i) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C6210cM)) {
return false;
}
C6210cM c6210cM = (C6210cM) obj;
return C14957gcv.b((Object) this.c, (Object) c6210cM.c) && this.e == c6210cM.e && C14957gcv.b((Object) this.a, (Object) c6210cM.a);
}
}