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

195 lines
5.7 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class ML {
public final String a;
public final IeS c;
public final LWm d;
public final HBt e;
public ML(String str, HBt hBt, LWm lWm, IeS ieS) {
C14957gcv.e(hBt, "");
C14957gcv.e(lWm, "");
C14957gcv.e(ieS, "");
this.a = str;
this.e = hBt;
this.d = lWm;
this.c = ieS;
}
/* loaded from: classes3.dex */
public static final class LWm {
public final Boolean b;
public final Boolean c;
public final boolean e;
private /* synthetic */ LWm(byte b) {
this(false, null, null);
}
public LWm(boolean z, Boolean bool, Boolean bool2) {
this.e = z;
this.c = bool;
this.b = bool2;
}
public final String toString() {
boolean z = this.e;
Boolean bool = this.c;
Boolean bool2 = this.b;
StringBuilder sb = new StringBuilder("PrivilegedProfession(isPrivileged=");
sb.append(z);
sb.append(", isDoctor=");
sb.append(bool);
sb.append(", isDentist=");
sb.append(bool2);
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: r0v6 */
/* JADX WARN: Type inference failed for: r0v7 */
public final int hashCode() {
boolean z = this.e;
?? r0 = z;
if (z) {
r0 = 1;
}
Boolean bool = this.c;
int hashCode = bool == null ? 0 : bool.hashCode();
Boolean bool2 = this.b;
return (((r0 * 31) + hashCode) * 31) + (bool2 != null ? bool2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof LWm)) {
return false;
}
LWm lWm = (LWm) obj;
return this.e == lWm.e && C14957gcv.b(this.c, lWm.c) && C14957gcv.b(this.b, lWm.b);
}
public LWm() {
this((byte) 0);
}
}
/* loaded from: classes3.dex */
public static final class HBt {
public final String b;
public final String c;
public HBt(String str, String str2) {
this.b = str;
this.c = str2;
}
public final String toString() {
String str = this.b;
String str2 = this.c;
StringBuilder sb = new StringBuilder("Contact(companyPhone=");
sb.append(str);
sb.append(", businessAddress=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.c;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof HBt)) {
return false;
}
HBt hBt = (HBt) obj;
return C14957gcv.b((Object) this.b, (Object) hBt.b) && C14957gcv.b((Object) this.c, (Object) hBt.c);
}
}
/* loaded from: classes3.dex */
public static final class IeS {
public final String d;
public final String e;
public IeS(String str, String str2) {
this.e = str;
this.d = str2;
}
public final String toString() {
String str = this.e;
String str2 = this.d;
StringBuilder sb = new StringBuilder("BusinessExperience(year=");
sb.append(str);
sb.append(", month=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.d;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IeS)) {
return false;
}
IeS ieS = (IeS) obj;
return C14957gcv.b((Object) this.e, (Object) ieS.e) && C14957gcv.b((Object) this.d, (Object) ieS.d);
}
}
public final String toString() {
String str = this.a;
HBt hBt = this.e;
LWm lWm = this.d;
IeS ieS = this.c;
StringBuilder sb = new StringBuilder("BusinessProfileDetailsDisplay(businessName=");
sb.append(str);
sb.append(", contact=");
sb.append(hBt);
sb.append(", privilegedProfession=");
sb.append(lWm);
sb.append(", businessExperience=");
sb.append(ieS);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
return ((((((str == null ? 0 : str.hashCode()) * 31) + this.e.hashCode()) * 31) + this.d.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ML)) {
return false;
}
ML ml = (ML) obj;
return C14957gcv.b((Object) this.a, (Object) ml.a) && C14957gcv.b(this.e, ml.e) && C14957gcv.b(this.d, ml.d) && C14957gcv.b(this.c, ml.c);
}
}