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

83 lines
2.7 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class TXk {
public final String a;
public final int b;
public final String c;
public final int d;
public final double e;
public final String f;
public final double g;
public final int h;
public final String i;
public final int j;
public TXk(String str, String str2, double d, int i, int i2, int i3, String str3, double d2, String str4, int i4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
this.a = str;
this.c = str2;
this.e = d;
this.d = i;
this.h = i2;
this.j = i3;
this.i = str3;
this.g = d2;
this.f = str4;
this.b = i4;
}
public final String toString() {
String str = this.a;
String str2 = this.c;
double d = this.e;
int i = this.d;
int i2 = this.h;
int i3 = this.j;
String str3 = this.i;
double d2 = this.g;
String str4 = this.f;
int i4 = this.b;
StringBuilder sb = new StringBuilder("PointToPayTransactionData(merchantName=");
sb.append(str);
sb.append(", campaignType=");
sb.append(str2);
sb.append(", cashbackRate=");
sb.append(d);
sb.append(", maxPointAdjust=");
sb.append(i);
sb.append(", minPointAdjust=");
sb.append(i2);
sb.append(", requirePoints=");
sb.append(i3);
sb.append(", sicCode=");
sb.append(str3);
sb.append(", txnAmount=");
sb.append(d2);
sb.append(", txnDate=");
sb.append(str4);
sb.append(", campaignCode=");
sb.append(i4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((((((((((this.a.hashCode() * 31) + this.c.hashCode()) * 31) + Double.hashCode(this.e)) * 31) + Integer.hashCode(this.d)) * 31) + Integer.hashCode(this.h)) * 31) + Integer.hashCode(this.j)) * 31) + this.i.hashCode()) * 31) + Double.hashCode(this.g)) * 31) + this.f.hashCode()) * 31) + Integer.hashCode(this.b);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof TXk)) {
return false;
}
TXk tXk = (TXk) obj;
return C14957gcv.b((Object) this.a, (Object) tXk.a) && C14957gcv.b((Object) this.c, (Object) tXk.c) && Double.compare(this.e, tXk.e) == 0 && this.d == tXk.d && this.h == tXk.h && this.j == tXk.j && C14957gcv.b((Object) this.i, (Object) tXk.i) && Double.compare(this.g, tXk.g) == 0 && C14957gcv.b((Object) this.f, (Object) tXk.f) && this.b == tXk.b;
}
}