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

92 lines
3.0 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class MpP {
@SerializedName("accountName")
public final String a;
@SerializedName("accountNo")
public final String b;
@SerializedName("accountSubType")
public final String c;
@SerializedName("accountType")
public final String d;
@SerializedName("accountSubTypeDesc")
public final String e;
@SerializedName("debitCards")
public final List<C16975spT> g;
@SerializedName("nickname")
public final String i;
@SerializedName("accountTypeDesc")
public final String j;
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.c;
String str4 = this.e;
String str5 = this.d;
String str6 = this.j;
List<C16975spT> list = this.g;
String str7 = this.i;
StringBuilder sb = new StringBuilder("EasycashFeatureAccountEntity(accountName=");
sb.append(str);
sb.append(", accountNo=");
sb.append(str2);
sb.append(", accountSubType=");
sb.append(str3);
sb.append(", accountSubTypeDesc=");
sb.append(str4);
sb.append(", accountType=");
sb.append(str5);
sb.append(", accountTypeDesc=");
sb.append(str6);
sb.append(", debitCards=");
sb.append(list);
sb.append(", nickname=");
sb.append(str7);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.c;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.e;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.d;
int hashCode5 = str5 == null ? 0 : str5.hashCode();
String str6 = this.j;
int hashCode6 = str6 == null ? 0 : str6.hashCode();
List<C16975spT> list = this.g;
int hashCode7 = list == null ? 0 : list.hashCode();
String str7 = this.i;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str7 != null ? str7.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MpP)) {
return false;
}
MpP mpP = (MpP) obj;
return C14957gcv.b((Object) this.a, (Object) mpP.a) && C14957gcv.b((Object) this.b, (Object) mpP.b) && C14957gcv.b((Object) this.c, (Object) mpP.c) && C14957gcv.b((Object) this.e, (Object) mpP.e) && C14957gcv.b((Object) this.d, (Object) mpP.d) && C14957gcv.b((Object) this.j, (Object) mpP.j) && C14957gcv.b(this.g, mpP.g) && C14957gcv.b((Object) this.i, (Object) mpP.i);
}
}