99 lines
2.9 KiB
Java
99 lines
2.9 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class wZk {
|
|
|
|
@SerializedName("amount")
|
|
public final double a;
|
|
|
|
@SerializedName("currencyName")
|
|
public final String b;
|
|
|
|
@SerializedName("allowTag")
|
|
public final List<String> c;
|
|
|
|
@SerializedName("displayForBuyCurrencyFlag")
|
|
public final int d;
|
|
|
|
@SerializedName("currency")
|
|
public final String e;
|
|
|
|
@SerializedName("sortSequence")
|
|
public final int f;
|
|
|
|
@SerializedName("displayWalletFlag")
|
|
public final int g;
|
|
|
|
@SerializedName("thbEquivalentAmount")
|
|
public final double h;
|
|
|
|
@SerializedName("flagImage")
|
|
public final String j;
|
|
|
|
public wZk(String str, String str2, String str3, double d, double d2, int i, List<String> list, int i2, int i3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(list, "");
|
|
this.e = str;
|
|
this.b = str2;
|
|
this.j = str3;
|
|
this.a = d;
|
|
this.h = d2;
|
|
this.f = i;
|
|
this.c = list;
|
|
this.g = i2;
|
|
this.d = i3;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.b;
|
|
String str3 = this.j;
|
|
double d = this.a;
|
|
double d2 = this.h;
|
|
int i = this.f;
|
|
List<String> list = this.c;
|
|
int i2 = this.g;
|
|
int i3 = this.d;
|
|
StringBuilder sb = new StringBuilder("PrepaidTravelWallet(currency=");
|
|
sb.append(str);
|
|
sb.append(", currencyName=");
|
|
sb.append(str2);
|
|
sb.append(", flagImage=");
|
|
sb.append(str3);
|
|
sb.append(", amount=");
|
|
sb.append(d);
|
|
sb.append(", thbEquivalentAmount=");
|
|
sb.append(d2);
|
|
sb.append(", sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", allowTag=");
|
|
sb.append(list);
|
|
sb.append(", displayWalletFlag=");
|
|
sb.append(i2);
|
|
sb.append(", displayForBuyCurrencyFlag=");
|
|
sb.append(i3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((((((((((((this.e.hashCode() * 31) + this.b.hashCode()) * 31) + this.j.hashCode()) * 31) + Double.hashCode(this.a)) * 31) + Double.hashCode(this.h)) * 31) + Integer.hashCode(this.f)) * 31) + this.c.hashCode()) * 31) + Integer.hashCode(this.g)) * 31) + Integer.hashCode(this.d);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof wZk)) {
|
|
return false;
|
|
}
|
|
wZk wzk = (wZk) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) wzk.e) && C14957gcv.b((Object) this.b, (Object) wzk.b) && C14957gcv.b((Object) this.j, (Object) wzk.j) && Double.compare(this.a, wzk.a) == 0 && Double.compare(this.h, wzk.h) == 0 && this.f == wzk.f && C14957gcv.b(this.c, wzk.c) && this.g == wzk.g && this.d == wzk.d;
|
|
}
|
|
}
|