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

92 lines
2.6 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class GH implements Parcelable {
public static final Parcelable.Creator<GH> CREATOR = new IeS();
public C0421Gf c;
public C0448Gt d;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public GH(C0421Gf c0421Gf, C0448Gt c0448Gt) {
this.c = c0421Gf;
this.d = c0448Gt;
}
public /* synthetic */ GH(byte b) {
this(null, null);
}
/* loaded from: classes3.dex */
public static final class IeS implements Parcelable.Creator<GH> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ GH createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new GH(parcel.readInt() == 0 ? null : C0421Gf.CREATOR.createFromParcel(parcel), parcel.readInt() != 0 ? C0448Gt.CREATOR.createFromParcel(parcel) : null);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ GH[] newArray(int i) {
return new GH[i];
}
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
C0421Gf c0421Gf = this.c;
if (c0421Gf == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
c0421Gf.writeToParcel(parcel, i);
}
C0448Gt c0448Gt = this.d;
if (c0448Gt == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
c0448Gt.writeToParcel(parcel, i);
}
}
public final String toString() {
C0421Gf c0421Gf = this.c;
C0448Gt c0448Gt = this.d;
StringBuilder sb = new StringBuilder("TransactionResponseDisplay(unbillInfo=");
sb.append(c0421Gf);
sb.append(", instPaymentInfo=");
sb.append(c0448Gt);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
C0421Gf c0421Gf = this.c;
int hashCode = c0421Gf == null ? 0 : c0421Gf.hashCode();
C0448Gt c0448Gt = this.d;
return (hashCode * 31) + (c0448Gt != null ? c0448Gt.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GH)) {
return false;
}
GH gh = (GH) obj;
return C14957gcv.b(this.c, gh.c) && C14957gcv.b(this.d, gh.d);
}
public GH() {
this((byte) 0);
}
}