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

86 lines
2.6 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import com.huawei.hms.support.feature.result.CommonConstant;
import java.util.List;
/* loaded from: classes3.dex */
public final class UdC {
@SerializedName("cardMask")
public final String a;
@SerializedName("cardRefNo")
public final String b;
@SerializedName("skipValidate")
public final Boolean c;
@SerializedName("sortSequence")
public final int d;
@SerializedName("productName")
public final String e;
@SerializedName(CommonConstant.KEY_STATUS)
public final FeA f;
@SerializedName("cardStatus")
private final String h;
@SerializedName("allowTag")
private final List<String> j;
public final String toString() {
int i = this.d;
String str = this.b;
String str2 = this.a;
String str3 = this.e;
String str4 = this.h;
Boolean bool = this.c;
FeA feA = this.f;
List<String> list = this.j;
StringBuilder sb = new StringBuilder("UnregisteredDebitEntity(sortSequence=");
sb.append(i);
sb.append(", cardRefNo=");
sb.append(str);
sb.append(", cardMask=");
sb.append(str2);
sb.append(", productName=");
sb.append(str3);
sb.append(", cardStatus=");
sb.append(str4);
sb.append(", skipValidate=");
sb.append(bool);
sb.append(", status=");
sb.append(feA);
sb.append(", allowTag=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.d);
int hashCode2 = this.b.hashCode();
int hashCode3 = this.a.hashCode();
int hashCode4 = this.e.hashCode();
int hashCode5 = this.h.hashCode();
Boolean bool = this.c;
int hashCode6 = bool == null ? 0 : bool.hashCode();
FeA feA = this.f;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (feA != null ? feA.hashCode() : 0)) * 31) + this.j.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UdC)) {
return false;
}
UdC udC = (UdC) obj;
return this.d == udC.d && C14957gcv.b((Object) this.b, (Object) udC.b) && C14957gcv.b((Object) this.a, (Object) udC.a) && C14957gcv.b((Object) this.e, (Object) udC.e) && C14957gcv.b((Object) this.h, (Object) udC.h) && C14957gcv.b(this.c, udC.c) && C14957gcv.b(this.f, udC.f) && C14957gcv.b(this.j, udC.j);
}
}