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

64 lines
1.7 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 IQF {
@SerializedName("thbEquivalentAmount")
public final double a;
@SerializedName("allowTag")
public final List<String> b;
@SerializedName("availableTopUpLimitAmount")
public final Double c;
@SerializedName("availableConversionLimit")
public final int e;
public IQF(List<String> list, int i, Double d, double d2) {
C14957gcv.e(list, "");
this.b = list;
this.e = i;
this.c = d;
this.a = d2;
}
public final String toString() {
List<String> list = this.b;
int i = this.e;
Double d = this.c;
double d2 = this.a;
StringBuilder sb = new StringBuilder("PrepaidTravelCard(allowTag=");
sb.append(list);
sb.append(", availableConversionLimit=");
sb.append(i);
sb.append(", availableTopUpLimitAmount=");
sb.append(d);
sb.append(", thbEquivalentAmount=");
sb.append(d2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.b.hashCode();
int hashCode2 = Integer.hashCode(this.e);
Double d = this.c;
return (((((hashCode * 31) + hashCode2) * 31) + (d == null ? 0 : d.hashCode())) * 31) + Double.hashCode(this.a);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IQF)) {
return false;
}
IQF iqf = (IQF) obj;
return C14957gcv.b(this.b, iqf.b) && this.e == iqf.e && C14957gcv.b(this.c, iqf.c) && Double.compare(this.a, iqf.a) == 0;
}
}