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

152 lines
4.9 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.Rpq, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0921Rpq {
@SerializedName("merchantName")
public final String a;
@SerializedName("maxPointAdjust")
public final Integer b;
@SerializedName("campaignCode")
public final Integer c;
@SerializedName("campaignType")
public final String d;
@SerializedName("campaignRate")
public final Double e;
@SerializedName("merchantSIC")
public final String f;
@SerializedName("minPointAdjust")
public final Integer g;
@SerializedName("transactionDate")
public final String h;
@SerializedName("transactionAmt")
public final Double i;
@SerializedName("requirePoints")
public final Integer j;
private C0921Rpq(String str, String str2, Double d, Integer num, Integer num2, Integer num3, String str3, Double d2, String str4, Integer num4) {
this.a = str;
this.d = str2;
this.e = d;
this.b = num;
this.g = num2;
this.j = num3;
this.f = str3;
this.i = d2;
this.h = str4;
this.c = num4;
}
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
private /* synthetic */ C0921Rpq(byte r12) {
/*
r11 = this;
java.lang.String r9 = ""
java.lang.String r1 = ""
java.lang.String r2 = ""
r3 = 0
java.lang.Double r8 = java.lang.Double.valueOf(r3)
r12 = 0
java.lang.Integer r10 = java.lang.Integer.valueOf(r12)
java.lang.String r7 = ""
r0 = r11
r3 = r8
r4 = r10
r5 = r10
r6 = r10
r0.<init>(r1, r2, r3, r4, r5, r6, r7, r8, r9, r10)
return
*/
throw new UnsupportedOperationException("Method not decompiled: o.C0921Rpq.<init>(byte):void");
}
public final String toString() {
String str = this.a;
String str2 = this.d;
Double d = this.e;
Integer num = this.b;
Integer num2 = this.g;
Integer num3 = this.j;
String str3 = this.f;
Double d2 = this.i;
String str4 = this.h;
Integer num4 = this.c;
StringBuilder sb = new StringBuilder("PointToPayTransactionDataEntity(merchantName=");
sb.append(str);
sb.append(", campaignType=");
sb.append(str2);
sb.append(", cashbackRate=");
sb.append(d);
sb.append(", maxPointAdjust=");
sb.append(num);
sb.append(", minPointAdjust=");
sb.append(num2);
sb.append(", requirePoints=");
sb.append(num3);
sb.append(", sicCode=");
sb.append(str3);
sb.append(", txnAmount=");
sb.append(d2);
sb.append(", txnDate=");
sb.append(str4);
sb.append(", campaignCode=");
sb.append(num4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.d;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
Double d = this.e;
int hashCode3 = d == null ? 0 : d.hashCode();
Integer num = this.b;
int hashCode4 = num == null ? 0 : num.hashCode();
Integer num2 = this.g;
int hashCode5 = num2 == null ? 0 : num2.hashCode();
Integer num3 = this.j;
int hashCode6 = num3 == null ? 0 : num3.hashCode();
String str3 = this.f;
int hashCode7 = str3 == null ? 0 : str3.hashCode();
Double d2 = this.i;
int hashCode8 = d2 == null ? 0 : d2.hashCode();
String str4 = this.h;
int hashCode9 = str4 == null ? 0 : str4.hashCode();
Integer num4 = this.c;
return (((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + (num4 != null ? num4.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0921Rpq)) {
return false;
}
C0921Rpq c0921Rpq = (C0921Rpq) obj;
return C14957gcv.b((Object) this.a, (Object) c0921Rpq.a) && C14957gcv.b((Object) this.d, (Object) c0921Rpq.d) && C14957gcv.b(this.e, c0921Rpq.e) && C14957gcv.b(this.b, c0921Rpq.b) && C14957gcv.b(this.g, c0921Rpq.g) && C14957gcv.b(this.j, c0921Rpq.j) && C14957gcv.b((Object) this.f, (Object) c0921Rpq.f) && C14957gcv.b(this.i, c0921Rpq.i) && C14957gcv.b((Object) this.h, (Object) c0921Rpq.h) && C14957gcv.b(this.c, c0921Rpq.c);
}
public C0921Rpq() {
this((byte) 0);
}
}