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

76 lines
2.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class FAd {
@SerializedName("additionalMetaData")
public final TIx a;
@SerializedName("feeType")
public final String b;
@SerializedName("accountFromName")
public final String c;
@SerializedName("accountToName")
public final String d;
@SerializedName("accountTo")
public final String e;
@SerializedName("totalFee")
public final double f;
@SerializedName("transactionToken")
public final String g;
@SerializedName("scbFee")
public final double j;
public final String toString() {
double d = this.f;
double d2 = this.j;
String str = this.b;
String str2 = this.c;
String str3 = this.e;
String str4 = this.d;
String str5 = this.g;
TIx tIx = this.a;
StringBuilder sb = new StringBuilder("NsipPartnerPaymentVerificationEntity(totalFee=");
sb.append(d);
sb.append(", scbFee=");
sb.append(d2);
sb.append(", feeType=");
sb.append(str);
sb.append(", accountFromName=");
sb.append(str2);
sb.append(", accountTo=");
sb.append(str3);
sb.append(", accountToName=");
sb.append(str4);
sb.append(", transactionToken=");
sb.append(str5);
sb.append(", additionalMetaDataEntity=");
sb.append(tIx);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((((((Double.hashCode(this.f) * 31) + Double.hashCode(this.j)) * 31) + this.b.hashCode()) * 31) + this.c.hashCode()) * 31) + this.e.hashCode()) * 31) + this.d.hashCode()) * 31) + this.g.hashCode()) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof FAd)) {
return false;
}
FAd fAd = (FAd) obj;
return Double.compare(this.f, fAd.f) == 0 && Double.compare(this.j, fAd.j) == 0 && C14957gcv.b((Object) this.b, (Object) fAd.b) && C14957gcv.b((Object) this.c, (Object) fAd.c) && C14957gcv.b((Object) this.e, (Object) fAd.e) && C14957gcv.b((Object) this.d, (Object) fAd.d) && C14957gcv.b((Object) this.g, (Object) fAd.g) && C14957gcv.b(this.a, fAd.a);
}
}