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

93 lines
2.8 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class QhH {
@SerializedName("cycleNumber")
public final String a;
@SerializedName("merchName")
public final String b;
@SerializedName("sequenceNo")
public final String c;
@SerializedName("postDate")
public final String d;
@SerializedName("refNo")
public final String e;
@SerializedName("transactionDate")
public final String f;
@SerializedName("transactionAmt")
public final Double g;
public QhH(String str, String str2, Double d, String str3, String str4, String str5, String str6) {
this.b = str;
this.f = str2;
this.g = d;
this.d = str3;
this.e = str4;
this.a = str5;
this.c = str6;
}
public final String toString() {
String str = this.b;
String str2 = this.f;
Double d = this.g;
String str3 = this.d;
String str4 = this.e;
String str5 = this.a;
String str6 = this.c;
StringBuilder sb = new StringBuilder("CardTransaction(merchantName=");
sb.append(str);
sb.append(", transactionDate=");
sb.append(str2);
sb.append(", transactionAmt=");
sb.append(d);
sb.append(", postDate=");
sb.append(str3);
sb.append(", refNo=");
sb.append(str4);
sb.append(", cycleNo=");
sb.append(str5);
sb.append(", sequenceNo=");
sb.append(str6);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.f;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
Double d = this.g;
int hashCode3 = d == null ? 0 : d.hashCode();
String str3 = this.d;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.e;
int hashCode5 = str4 == null ? 0 : str4.hashCode();
String str5 = this.a;
int hashCode6 = str5 == null ? 0 : str5.hashCode();
String str6 = this.c;
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (str6 != null ? str6.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof QhH)) {
return false;
}
QhH qhH = (QhH) obj;
return C14957gcv.b((Object) this.b, (Object) qhH.b) && C14957gcv.b((Object) this.f, (Object) qhH.f) && C14957gcv.b(this.g, qhH.g) && C14957gcv.b((Object) this.d, (Object) qhH.d) && C14957gcv.b((Object) this.e, (Object) qhH.e) && C14957gcv.b((Object) this.a, (Object) qhH.a) && C14957gcv.b((Object) this.c, (Object) qhH.c);
}
}