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

109 lines
3.4 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;
/* loaded from: classes3.dex */
public final class HU implements Parcelable {
public static final HBt CREATOR = new HBt(0);
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public HU(String str, String str2, String str3, String str4, String str5) {
this.c = str;
this.e = str2;
this.a = str3;
this.b = str4;
this.d = str5;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public HU(Parcel parcel) {
this(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
C14957gcv.e(parcel, "");
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeString(this.c);
parcel.writeString(this.e);
parcel.writeString(this.a);
parcel.writeString(this.b);
parcel.writeString(this.d);
}
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<HU> {
private HBt() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ HU createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new HU(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ HU[] newArray(int i) {
return new HU[i];
}
public /* synthetic */ HBt(byte b) {
this();
}
}
public final String toString() {
String str = this.c;
String str2 = this.e;
String str3 = this.a;
String str4 = this.b;
String str5 = this.d;
StringBuilder sb = new StringBuilder("SourceOfFundPaymentInfoDisplay(type=");
sb.append(str);
sb.append(", title=");
sb.append(str2);
sb.append(", header=");
sb.append(str3);
sb.append(", description=");
sb.append(str4);
sb.append(", imageURL=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.e;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.a;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.b;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.d;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str5 != null ? str5.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof HU)) {
return false;
}
HU hu = (HU) obj;
return C14957gcv.b((Object) this.c, (Object) hu.c) && C14957gcv.b((Object) this.e, (Object) hu.e) && C14957gcv.b((Object) this.a, (Object) hu.a) && C14957gcv.b((Object) this.b, (Object) hu.b) && C14957gcv.b((Object) this.d, (Object) hu.d);
}
}