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

67 lines
2.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class DDz {
@SerializedName("existingCustomer")
private final boolean a;
@SerializedName("tcAcceptRequired")
private final String b;
@SerializedName("tcAcceptDate")
private final String c;
@SerializedName("mutualFundTcAcceptRequired")
private final String d;
@SerializedName("tcAcceptVersion")
private final int e;
public final String toString() {
boolean z = this.a;
String str = this.d;
int i = this.e;
String str2 = this.c;
String str3 = this.b;
StringBuilder sb = new StringBuilder("VerifiedProfileEntity(existingCustomer=");
sb.append(z);
sb.append(", mutualFundTcAcceptRequired=");
sb.append(str);
sb.append(", tcAcceptVersion=");
sb.append(i);
sb.append(", tcAcceptDate=");
sb.append(str2);
sb.append(", tcAcceptRequired=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v10 */
/* JADX WARN: Type inference failed for: r0v11 */
public final int hashCode() {
boolean z = this.a;
?? r0 = z;
if (z) {
r0 = 1;
}
return (((((((r0 * 31) + this.d.hashCode()) * 31) + Integer.hashCode(this.e)) * 31) + this.c.hashCode()) * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof DDz)) {
return false;
}
DDz dDz = (DDz) obj;
return this.a == dDz.a && C14957gcv.b((Object) this.d, (Object) dDz.d) && this.e == dDz.e && C14957gcv.b((Object) this.c, (Object) dDz.c) && C14957gcv.b((Object) this.b, (Object) dDz.b);
}
}