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

70 lines
1.9 KiB
Java

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