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

77 lines
2.4 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import org.bouncycastle.i18n.ErrorBundle;
/* loaded from: classes3.dex */
public final class GuF {
@SerializedName("amountTo")
public final double a;
@SerializedName("amountFrom")
public final double b;
@SerializedName("currencyCodeFrom")
public final String c;
@SerializedName("currencyCodeTo")
public final String d;
@SerializedName("conversionRate")
public final String e;
@SerializedName("fee")
public final double g;
@SerializedName(ErrorBundle.DETAIL_ENTRY)
public final String h;
@SerializedName("feeCurrencyCode")
public final String i;
public final String toString() {
String str = this.e;
double d = this.b;
double d2 = this.a;
String str2 = this.c;
String str3 = this.d;
double d3 = this.g;
String str4 = this.i;
String str5 = this.h;
StringBuilder sb = new StringBuilder("TxnDetailsEntity(conversionRate=");
sb.append(str);
sb.append(", amountFrom=");
sb.append(d);
sb.append(", amountTo=");
sb.append(d2);
sb.append(", currencyCodeFrom=");
sb.append(str2);
sb.append(", currencyCodeTo=");
sb.append(str3);
sb.append(", fee=");
sb.append(d3);
sb.append(", feeCurrencyCode=");
sb.append(str4);
sb.append(", details=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((((((this.e.hashCode() * 31) + Double.hashCode(this.b)) * 31) + Double.hashCode(this.a)) * 31) + this.c.hashCode()) * 31) + this.d.hashCode()) * 31) + Double.hashCode(this.g)) * 31) + this.i.hashCode()) * 31) + this.h.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GuF)) {
return false;
}
GuF guF = (GuF) obj;
return C14957gcv.b((Object) this.e, (Object) guF.e) && Double.compare(this.b, guF.b) == 0 && Double.compare(this.a, guF.a) == 0 && C14957gcv.b((Object) this.c, (Object) guF.c) && C14957gcv.b((Object) this.d, (Object) guF.d) && Double.compare(this.g, guF.g) == 0 && C14957gcv.b((Object) this.i, (Object) guF.i) && C14957gcv.b((Object) this.h, (Object) guF.h);
}
}