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

68 lines
2.1 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import io.beid.beidk.definitions.BeIDParams;
/* loaded from: classes3.dex */
public final class qsv {
@SerializedName("registerVerifyUser")
public final Boolean a;
@SerializedName("fatcaStatus")
public final String b;
@SerializedName(BeIDParams.BEID_TRANSACTION_ID)
public final String c;
@SerializedName("userType")
public final String d;
@SerializedName("ekycMethod")
public final String e;
public final String toString() {
String str = this.b;
Boolean bool = this.a;
String str2 = this.c;
String str3 = this.e;
String str4 = this.d;
StringBuilder sb = new StringBuilder("TouchPointValidateEntity(fatcaStatus=");
sb.append(str);
sb.append(", registerVerifyUser=");
sb.append(bool);
sb.append(", transactionId=");
sb.append(str2);
sb.append(", ekycMethod=");
sb.append(str3);
sb.append(", userType=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
int hashCode = str == null ? 0 : str.hashCode();
Boolean bool = this.a;
int hashCode2 = bool == null ? 0 : bool.hashCode();
String str2 = this.c;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.d;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str4 != null ? str4.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof qsv)) {
return false;
}
qsv qsvVar = (qsv) obj;
return C14957gcv.b((Object) this.b, (Object) qsvVar.b) && C14957gcv.b(this.a, qsvVar.a) && C14957gcv.b((Object) this.c, (Object) qsvVar.c) && C14957gcv.b((Object) this.e, (Object) qsvVar.e) && C14957gcv.b((Object) this.d, (Object) qsvVar.d);
}
}