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

60 lines
1.6 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class dVU {
public final boolean a;
public final boolean b;
public final iKd c;
public final String d;
public dVU(iKd ikd, boolean z, boolean z2, String str) {
this.c = ikd;
this.b = z;
this.a = z2;
this.d = str;
}
public final String toString() {
iKd ikd = this.c;
boolean z = this.b;
boolean z2 = this.a;
String str = this.d;
StringBuilder sb = new StringBuilder("Registration(userProfile=");
sb.append(ikd);
sb.append(", isPinLocked=");
sb.append(z);
sb.append(", isCCActivation=");
sb.append(z2);
sb.append(", description=");
sb.append(str);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
iKd ikd = this.c;
int hashCode = ikd == null ? 0 : ikd.hashCode();
boolean z = this.b;
int i = z;
if (z != 0) {
i = 1;
}
boolean z2 = this.a;
int i2 = z2 ? 1 : z2 ? 1 : 0;
String str = this.d;
return (((((hashCode * 31) + i) * 31) + i2) * 31) + (str != null ? str.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof dVU)) {
return false;
}
dVU dvu = (dVU) obj;
return C14957gcv.b(this.c, dvu.c) && this.b == dvu.b && this.a == dvu.a && C14957gcv.b((Object) this.d, (Object) dvu.d);
}
}