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

128 lines
4.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Gf, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0421Gf implements Parcelable {
public static final Parcelable.Creator<C0421Gf> CREATOR = new HBt();
public String a;
public String b;
public String c;
public String d;
public String e;
public Double h;
public String i;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public C0421Gf(String str, String str2, Double d, String str3, String str4, String str5, String str6) {
this.e = str;
this.i = str2;
this.h = d;
this.b = str3;
this.d = str4;
this.a = str5;
this.c = str6;
}
public /* synthetic */ C0421Gf(byte b) {
this("", "", Double.valueOf(0.0d), "", "", "", "");
}
/* renamed from: o.Gf$HBt */
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<C0421Gf> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0421Gf createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new C0421Gf(parcel.readString(), parcel.readString(), parcel.readInt() == 0 ? null : Double.valueOf(parcel.readDouble()), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0421Gf[] newArray(int i) {
return new C0421Gf[i];
}
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeString(this.e);
parcel.writeString(this.i);
Double d = this.h;
if (d == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
parcel.writeDouble(d.doubleValue());
}
parcel.writeString(this.b);
parcel.writeString(this.d);
parcel.writeString(this.a);
parcel.writeString(this.c);
}
public final String toString() {
String str = this.e;
String str2 = this.i;
Double d = this.h;
String str3 = this.b;
String str4 = this.d;
String str5 = this.a;
String str6 = this.c;
StringBuilder sb = new StringBuilder("CardTransactionDisplay(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.e;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.i;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
Double d = this.h;
int hashCode3 = d == null ? 0 : d.hashCode();
String str3 = this.b;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.d;
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 C0421Gf)) {
return false;
}
C0421Gf c0421Gf = (C0421Gf) obj;
return C14957gcv.b((Object) this.e, (Object) c0421Gf.e) && C14957gcv.b((Object) this.i, (Object) c0421Gf.i) && C14957gcv.b(this.h, c0421Gf.h) && C14957gcv.b((Object) this.b, (Object) c0421Gf.b) && C14957gcv.b((Object) this.d, (Object) c0421Gf.d) && C14957gcv.b((Object) this.a, (Object) c0421Gf.a) && C14957gcv.b((Object) this.c, (Object) c0421Gf.c);
}
public C0421Gf() {
this((byte) 0);
}
}