79 lines
2.1 KiB
Java
79 lines
2.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class UeN {
|
|
|
|
@SerializedName("bankShortNameTh")
|
|
public String a;
|
|
|
|
@SerializedName("bankNameEn")
|
|
public String b;
|
|
|
|
@SerializedName("bankNameTh")
|
|
public String c;
|
|
|
|
@SerializedName("bankShortNameEn")
|
|
public String d;
|
|
|
|
@SerializedName("bankCode")
|
|
public String e;
|
|
|
|
private /* synthetic */ UeN(byte b) {
|
|
this("", "", "", "", "");
|
|
}
|
|
|
|
private UeN(String str, String str2, String str3, String str4, String str5) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
C14957gcv.e(str5, "");
|
|
this.e = str;
|
|
this.b = str2;
|
|
this.c = str3;
|
|
this.d = str4;
|
|
this.a = str5;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.b;
|
|
String str3 = this.c;
|
|
String str4 = this.d;
|
|
String str5 = this.a;
|
|
StringBuilder sb = new StringBuilder("ObligationBankRequest(bankCode=");
|
|
sb.append(str);
|
|
sb.append(", bankNameEn=");
|
|
sb.append(str2);
|
|
sb.append(", bankNameTh=");
|
|
sb.append(str3);
|
|
sb.append(", bankShortNameEn=");
|
|
sb.append(str4);
|
|
sb.append(", bankShortNameTh=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((((this.e.hashCode() * 31) + this.b.hashCode()) * 31) + this.c.hashCode()) * 31) + this.d.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof UeN)) {
|
|
return false;
|
|
}
|
|
UeN ueN = (UeN) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) ueN.e) && C14957gcv.b((Object) this.b, (Object) ueN.b) && C14957gcv.b((Object) this.c, (Object) ueN.c) && C14957gcv.b((Object) this.d, (Object) ueN.d) && C14957gcv.b((Object) this.a, (Object) ueN.a);
|
|
}
|
|
|
|
public UeN() {
|
|
this((byte) 0);
|
|
}
|
|
}
|