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

99 lines
3.0 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class sQR {
@SerializedName("campaignCode")
private final int a;
@SerializedName("cardRefNo")
private final String b;
@SerializedName("merchantName")
private final String c;
@SerializedName("campaignType")
private final String d;
@SerializedName("campaignRate")
private final double e;
@SerializedName("transactionDate")
private final String f;
@SerializedName("merchantSIC")
private final String g;
@SerializedName("transactionAmt")
private final double h;
@SerializedName("point")
private final int j;
public sQR(String str, String str2, String str3, String str4, double d, int i, String str5, double d2, int i2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
C14957gcv.e(str5, "");
this.b = str;
this.g = str2;
this.c = str3;
this.f = str4;
this.h = d;
this.a = i;
this.d = str5;
this.e = d2;
this.j = i2;
}
public final String toString() {
String str = this.b;
String str2 = this.g;
String str3 = this.c;
String str4 = this.f;
double d = this.h;
int i = this.a;
String str5 = this.d;
double d2 = this.e;
int i2 = this.j;
StringBuilder sb = new StringBuilder("PointToPayConfirmRequest(cardRefNo=");
sb.append(str);
sb.append(", merchantSIC=");
sb.append(str2);
sb.append(", merchantName=");
sb.append(str3);
sb.append(", transactionDate=");
sb.append(str4);
sb.append(", transactionAmt=");
sb.append(d);
sb.append(", campaignCode=");
sb.append(i);
sb.append(", campaignType=");
sb.append(str5);
sb.append(", campaignRate=");
sb.append(d2);
sb.append(", point=");
sb.append(i2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((((((((this.b.hashCode() * 31) + this.g.hashCode()) * 31) + this.c.hashCode()) * 31) + this.f.hashCode()) * 31) + Double.hashCode(this.h)) * 31) + Integer.hashCode(this.a)) * 31) + this.d.hashCode()) * 31) + Double.hashCode(this.e)) * 31) + Integer.hashCode(this.j);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof sQR)) {
return false;
}
sQR sqr = (sQR) obj;
return C14957gcv.b((Object) this.b, (Object) sqr.b) && C14957gcv.b((Object) this.g, (Object) sqr.g) && C14957gcv.b((Object) this.c, (Object) sqr.c) && C14957gcv.b((Object) this.f, (Object) sqr.f) && Double.compare(this.h, sqr.h) == 0 && this.a == sqr.a && C14957gcv.b((Object) this.d, (Object) sqr.d) && Double.compare(this.e, sqr.e) == 0 && this.j == sqr.j;
}
}