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

100 lines
3.2 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class SLx {
@SerializedName("amount")
public final Double a;
@SerializedName("currencyName")
public final String b;
@SerializedName("displayForBuyCurrencyFlag")
public final Integer c;
@SerializedName("allowTag")
public final List<String> d;
@SerializedName("currency")
public final String e;
@SerializedName("displayWalletFlag")
public final Integer f;
@SerializedName("sortSequence")
public final Integer g;
@SerializedName("thbEquivalentAmount")
public final Double i;
@SerializedName("flagImage")
public final String j;
public final String toString() {
String str = this.e;
String str2 = this.b;
String str3 = this.j;
Double d = this.a;
Double d2 = this.i;
Integer num = this.g;
List<String> list = this.d;
Integer num2 = this.f;
Integer num3 = this.c;
StringBuilder sb = new StringBuilder("TravelWalletEntity(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(num);
sb.append(", allowTag=");
sb.append(list);
sb.append(", displayWalletFlag=");
sb.append(num2);
sb.append(", displayForBuyCurrencyFlag=");
sb.append(num3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.j;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
Double d = this.a;
int hashCode4 = d == null ? 0 : d.hashCode();
Double d2 = this.i;
int hashCode5 = d2 == null ? 0 : d2.hashCode();
Integer num = this.g;
int hashCode6 = num == null ? 0 : num.hashCode();
List<String> list = this.d;
int hashCode7 = list == null ? 0 : list.hashCode();
Integer num2 = this.f;
int hashCode8 = num2 == null ? 0 : num2.hashCode();
Integer num3 = this.c;
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (num3 != null ? num3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof SLx)) {
return false;
}
SLx sLx = (SLx) obj;
return C14957gcv.b((Object) this.e, (Object) sLx.e) && C14957gcv.b((Object) this.b, (Object) sLx.b) && C14957gcv.b((Object) this.j, (Object) sLx.j) && C14957gcv.b(this.a, sLx.a) && C14957gcv.b(this.i, sLx.i) && C14957gcv.b(this.g, sLx.g) && C14957gcv.b(this.d, sLx.d) && C14957gcv.b(this.f, sLx.f) && C14957gcv.b(this.c, sLx.c);
}
}