61 lines
1.6 KiB
Java
61 lines
1.6 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class oFR {
|
|
|
|
@SerializedName("transactionToken")
|
|
private final String b;
|
|
|
|
@SerializedName("tilesVersion")
|
|
public String c;
|
|
|
|
@SerializedName("isFaceValidate")
|
|
private final Boolean e;
|
|
|
|
public /* synthetic */ oFR(String str, Boolean bool) {
|
|
this(str, bool, (byte) 0);
|
|
}
|
|
|
|
private oFR(String str, Boolean bool, byte b) {
|
|
C14957gcv.e(str, "");
|
|
this.b = str;
|
|
this.e = bool;
|
|
this.c = null;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
Boolean bool = this.e;
|
|
String str2 = this.c;
|
|
StringBuilder sb = new StringBuilder("BulkTransferConfirmRequest(transactionToken=");
|
|
sb.append(str);
|
|
sb.append(", isFaceValidate=");
|
|
sb.append(bool);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.b.hashCode();
|
|
Boolean bool = this.e;
|
|
int hashCode2 = bool == null ? 0 : bool.hashCode();
|
|
String str = this.c;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str != null ? str.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof oFR)) {
|
|
return false;
|
|
}
|
|
oFR ofr = (oFR) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) ofr.b) && C14957gcv.b(this.e, ofr.e) && C14957gcv.b((Object) this.c, (Object) ofr.c);
|
|
}
|
|
}
|