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

57 lines
1.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class wdd {
@SerializedName("basicAccountRemark")
public final Gig a;
@SerializedName("registeredDepositAccountList")
public final List<C2624aiC> b;
@SerializedName("productType")
public final String d;
@SerializedName("debitCardTypeList")
public final List<iAr> e;
public final String toString() {
List<C2624aiC> list = this.b;
List<iAr> list2 = this.e;
Gig gig = this.a;
String str = this.d;
StringBuilder sb = new StringBuilder("DebitCardRequestEntity(registeredDepositAccountList=");
sb.append(list);
sb.append(", debitCardTypeList=");
sb.append(list2);
sb.append(", basicAccountRemark=");
sb.append(gig);
sb.append(", productType=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.b.hashCode();
int hashCode2 = this.e.hashCode();
int hashCode3 = this.a.hashCode();
String str = this.d;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof wdd)) {
return false;
}
wdd wddVar = (wdd) obj;
return C14957gcv.b(this.b, wddVar.b) && C14957gcv.b(this.e, wddVar.e) && C14957gcv.b(this.a, wddVar.a) && C14957gcv.b((Object) this.d, (Object) wddVar.d);
}
}