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

82 lines
2.4 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class XAa {
@SerializedName("annotation")
private final String a;
@SerializedName("localAmount")
private final long b;
@SerializedName("thbAmount")
private final double c;
@SerializedName("accountProductCode")
private final String d;
@SerializedName("accountNo")
private final String e;
@SerializedName("tokenId")
private final String g;
public XAa(String str, String str2, double d, long j, String str3, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.e = str;
this.d = str2;
this.c = d;
this.b = j;
this.g = str3;
this.a = str4;
}
public final String toString() {
String str = this.e;
String str2 = this.d;
double d = this.c;
long j = this.b;
String str3 = this.g;
String str4 = this.a;
StringBuilder sb = new StringBuilder("CrossBorderVerificationRequest(accountNo=");
sb.append(str);
sb.append(", accountProductCode=");
sb.append(str2);
sb.append(", thbAmount=");
sb.append(d);
sb.append(", localAmount=");
sb.append(j);
sb.append(", tokenId=");
sb.append(str3);
sb.append(", annotation=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.e.hashCode();
int hashCode2 = this.d.hashCode();
int hashCode3 = Double.hashCode(this.c);
int hashCode4 = Long.hashCode(this.b);
int hashCode5 = this.g.hashCode();
String str = this.a;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof XAa)) {
return false;
}
XAa xAa = (XAa) obj;
return C14957gcv.b((Object) this.e, (Object) xAa.e) && C14957gcv.b((Object) this.d, (Object) xAa.d) && Double.compare(this.c, xAa.c) == 0 && this.b == xAa.b && C14957gcv.b((Object) this.g, (Object) xAa.g) && C14957gcv.b((Object) this.a, (Object) xAa.a);
}
}