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

67 lines
2.0 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class gAM {
@SerializedName("productType")
private final nrH a;
@SerializedName("sortSequence")
private final Integer b;
@SerializedName("cardRefNo")
private final String c;
@SerializedName("nickname")
private final String d;
@SerializedName("cardMask")
private final String e;
public final String toString() {
Integer num = this.b;
String str = this.c;
String str2 = this.e;
String str3 = this.d;
nrH nrh = this.a;
StringBuilder sb = new StringBuilder("PrepaidCardEntity(sortSequence=");
sb.append(num);
sb.append(", cardRefNo=");
sb.append(str);
sb.append(", cardMask=");
sb.append(str2);
sb.append(", nickname=");
sb.append(str3);
sb.append(", productType=");
sb.append(nrh);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Integer num = this.b;
int hashCode = num == null ? 0 : num.hashCode();
String str = this.c;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.e;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.d;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
nrH nrh = this.a;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (nrh != null ? nrh.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof gAM)) {
return false;
}
gAM gam = (gAM) obj;
return C14957gcv.b(this.b, gam.b) && C14957gcv.b((Object) this.c, (Object) gam.c) && C14957gcv.b((Object) this.e, (Object) gam.e) && C14957gcv.b((Object) this.d, (Object) gam.d) && C14957gcv.b(this.a, gam.a);
}
}