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

198 lines
5.4 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 WVX {
@SerializedName("businessExperience")
private final IeS a;
@SerializedName("privilegedProfession")
private final HBt b;
@SerializedName("applicationUuid")
private final String c;
@SerializedName("contact")
private final RVV d;
@SerializedName("businessName")
private final String e;
public WVX(String str, String str2, RVV rvv, HBt hBt, IeS ieS) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(rvv, "");
C14957gcv.e(hBt, "");
C14957gcv.e(ieS, "");
this.c = str;
this.e = str2;
this.d = rvv;
this.b = hBt;
this.a = ieS;
}
/* loaded from: classes3.dex */
public static final class HBt {
@SerializedName("flag")
private final String a;
@SerializedName("code")
private final String c;
public HBt(String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.a = str;
this.c = str2;
}
public final String toString() {
String str = this.a;
String str2 = this.c;
StringBuilder sb = new StringBuilder("PrivilegedProfession(flag=");
sb.append(str);
sb.append(", code=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.a.hashCode() * 31) + this.c.hashCode();
}
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.a, (Object) hBt.a) && C14957gcv.b((Object) this.c, (Object) hBt.c);
}
}
/* loaded from: classes3.dex */
public static final class RVV {
@SerializedName("companyPhone")
private final String b;
@SerializedName("businessAddress")
private final C1789aOf d;
public RVV(String str, C1789aOf c1789aOf) {
C14957gcv.e(str, "");
C14957gcv.e(c1789aOf, "");
this.b = str;
this.d = c1789aOf;
}
public final String toString() {
String str = this.b;
C1789aOf c1789aOf = this.d;
StringBuilder sb = new StringBuilder("Contact(companyPhone=");
sb.append(str);
sb.append(", businessAddress=");
sb.append(c1789aOf);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.b.hashCode() * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RVV)) {
return false;
}
RVV rvv = (RVV) obj;
return C14957gcv.b((Object) this.b, (Object) rvv.b) && C14957gcv.b(this.d, rvv.d);
}
}
/* loaded from: classes3.dex */
public static final class IeS {
@SerializedName("month")
private final int b;
@SerializedName("year")
private final int e;
public IeS(int i, int i2) {
this.e = i;
this.b = i2;
}
public final String toString() {
int i = this.e;
int i2 = this.b;
StringBuilder sb = new StringBuilder("BusinessExperience(year=");
sb.append(i);
sb.append(", month=");
sb.append(i2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (Integer.hashCode(this.e) * 31) + Integer.hashCode(this.b);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IeS)) {
return false;
}
IeS ieS = (IeS) obj;
return this.e == ieS.e && this.b == ieS.b;
}
}
public final String toString() {
String str = this.c;
String str2 = this.e;
RVV rvv = this.d;
HBt hBt = this.b;
IeS ieS = this.a;
StringBuilder sb = new StringBuilder("BusinessProfileDetailsRequest(applicationUuid=");
sb.append(str);
sb.append(", businessName=");
sb.append(str2);
sb.append(", contact=");
sb.append(rvv);
sb.append(", privilegedProfession=");
sb.append(hBt);
sb.append(", businessExperience=");
sb.append(ieS);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((this.c.hashCode() * 31) + this.e.hashCode()) * 31) + this.d.hashCode()) * 31) + this.b.hashCode()) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WVX)) {
return false;
}
WVX wvx = (WVX) obj;
return C14957gcv.b((Object) this.c, (Object) wvx.c) && C14957gcv.b((Object) this.e, (Object) wvx.e) && C14957gcv.b(this.d, wvx.d) && C14957gcv.b(this.b, wvx.b) && C14957gcv.b(this.a, wvx.a);
}
}