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

92 lines
2.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public class mWD {
@SerializedName("lastName")
public String a;
@SerializedName("email")
public String b;
@SerializedName("language")
public String c;
@SerializedName("avatar")
public String d;
@SerializedName("ekyc")
public zKN e;
@SerializedName("name")
public String f;
@SerializedName("pinFlag")
public String i;
@SerializedName("mobileNo")
public String j;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
mWD mwd = (mWD) obj;
String str = this.f;
if (str == null ? mwd.f != null : !str.equals(mwd.f)) {
return false;
}
String str2 = this.a;
if (str2 == null ? mwd.a != null : !str2.equals(mwd.a)) {
return false;
}
String str3 = this.b;
if (str3 == null ? mwd.b != null : !str3.equals(mwd.b)) {
return false;
}
String str4 = this.j;
if (str4 == null ? mwd.j != null : !str4.equals(mwd.j)) {
return false;
}
String str5 = this.c;
if (str5 == null ? mwd.c != null : !str5.equals(mwd.c)) {
return false;
}
String str6 = this.d;
if (str6 == null ? mwd.d != null : !str6.equals(mwd.d)) {
return false;
}
String str7 = this.i;
if (str7 == null ? mwd.i != null : !str7.equals(mwd.i)) {
return false;
}
zKN zkn = this.e;
zKN zkn2 = mwd.e;
return zkn != null ? zkn.equals(zkn2) : zkn2 == null;
}
public int hashCode() {
String str = this.f;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.a;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.b;
int hashCode3 = str3 != null ? str3.hashCode() : 0;
String str4 = this.j;
int hashCode4 = str4 != null ? str4.hashCode() : 0;
String str5 = this.c;
int hashCode5 = str5 != null ? str5.hashCode() : 0;
String str6 = this.d;
int hashCode6 = str6 != null ? str6.hashCode() : 0;
String str7 = this.i;
int hashCode7 = str7 != null ? str7.hashCode() : 0;
zKN zkn = this.e;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (zkn != null ? zkn.hashCode() : 0);
}
}