package o; /* loaded from: classes3.dex */ public final class Fuf { private final double a; private final String b; private final String c; private final int d; private final String e; public Fuf(int i, String str, double d, String str2, String str3) { C14957gcv.e(str, ""); C14957gcv.e(str2, ""); C14957gcv.e(str3, ""); this.d = i; this.c = str; this.a = d; this.b = str2; this.e = str3; } public final String toString() { int i = this.d; String str = this.c; double d = this.a; String str2 = this.b; String str3 = this.e; StringBuilder sb = new StringBuilder("Transaction(sortSequence="); sb.append(i); sb.append(", txnDateTime="); sb.append(str); sb.append(", txnAmount="); sb.append(d); sb.append(", txnCurrency="); sb.append(str2); sb.append(", txnDebitCreditFlag="); sb.append(str3); sb.append(")"); return sb.toString(); } public final int hashCode() { return (((((((Integer.hashCode(this.d) * 31) + this.c.hashCode()) * 31) + Double.hashCode(this.a)) * 31) + this.b.hashCode()) * 31) + this.e.hashCode(); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof Fuf)) { return false; } Fuf fuf = (Fuf) obj; return this.d == fuf.d && C14957gcv.b((Object) this.c, (Object) fuf.c) && Double.compare(this.a, fuf.a) == 0 && C14957gcv.b((Object) this.b, (Object) fuf.b) && C14957gcv.b((Object) this.e, (Object) fuf.e); } }