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

70 lines
2.2 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class BCM {
public final String a;
public final String b;
public final String c;
public final ETe d;
public final String e;
public final List<String> j;
public BCM(ETe eTe, String str, List<String> list, String str2, String str3, String str4) {
C14957gcv.e(eTe, "");
C14957gcv.e(list, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
this.d = eTe;
this.e = str;
this.j = list;
this.c = str2;
this.b = str3;
this.a = str4;
}
public final String toString() {
ETe eTe = this.d;
String str = this.e;
List<String> list = this.j;
String str2 = this.c;
String str3 = this.b;
String str4 = this.a;
StringBuilder sb = new StringBuilder("HmlApplicationsOccupationInfo(experience=");
sb.append(eTe);
sb.append(", companyPhone=");
sb.append(str);
sb.append(", workAddress=");
sb.append(list);
sb.append(", companyName=");
sb.append(str2);
sb.append(", sourceOfIncome=");
sb.append(str3);
sb.append(", occupation=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.d.hashCode();
String str = this.e;
int hashCode2 = str == null ? 0 : str.hashCode();
int hashCode3 = this.j.hashCode();
String str2 = this.c;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str2 != null ? str2.hashCode() : 0)) * 31) + this.b.hashCode()) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof BCM)) {
return false;
}
BCM bcm = (BCM) obj;
return C14957gcv.b(this.d, bcm.d) && C14957gcv.b((Object) this.e, (Object) bcm.e) && C14957gcv.b(this.j, bcm.j) && C14957gcv.b((Object) this.c, (Object) bcm.c) && C14957gcv.b((Object) this.b, (Object) bcm.b) && C14957gcv.b((Object) this.a, (Object) bcm.a);
}
}