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

92 lines
2.9 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import org.bouncycastle.i18n.ErrorBundle;
/* loaded from: classes3.dex */
public final class FTF {
@SerializedName("conversionRate")
public final String a;
@SerializedName("amountTo")
public final Double b;
@SerializedName("currencyCodeTo")
public final String c;
@SerializedName("amountFrom")
public final Double d;
@SerializedName("currencyCodeFrom")
public final String e;
@SerializedName("fee")
public final Double f;
@SerializedName("feeCurrencyCode")
public final String h;
@SerializedName(ErrorBundle.DETAIL_ENTRY)
public final String i;
public final String toString() {
String str = this.a;
Double d = this.d;
Double d2 = this.b;
String str2 = this.e;
String str3 = this.c;
Double d3 = this.f;
String str4 = this.h;
String str5 = this.i;
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() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
Double d = this.d;
int hashCode2 = d == null ? 0 : d.hashCode();
Double d2 = this.b;
int hashCode3 = d2 == null ? 0 : d2.hashCode();
String str2 = this.e;
int hashCode4 = str2 == null ? 0 : str2.hashCode();
String str3 = this.c;
int hashCode5 = str3 == null ? 0 : str3.hashCode();
Double d3 = this.f;
int hashCode6 = d3 == null ? 0 : d3.hashCode();
String str4 = this.h;
int hashCode7 = str4 == null ? 0 : str4.hashCode();
String str5 = this.i;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str5 != null ? str5.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof FTF)) {
return false;
}
FTF ftf = (FTF) obj;
return C14957gcv.b((Object) this.a, (Object) ftf.a) && C14957gcv.b(this.d, ftf.d) && C14957gcv.b(this.b, ftf.b) && C14957gcv.b((Object) this.e, (Object) ftf.e) && C14957gcv.b((Object) this.c, (Object) ftf.c) && C14957gcv.b(this.f, ftf.f) && C14957gcv.b((Object) this.h, (Object) ftf.h) && C14957gcv.b((Object) this.i, (Object) ftf.i);
}
}