118 lines
4.0 KiB
Java
118 lines
4.0 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class UA implements Parcelable {
|
||
|
public static final Parcelable.Creator<UA> CREATOR = new HBt();
|
||
|
public final List<String> a;
|
||
|
public final String b;
|
||
|
public final String c;
|
||
|
public final int d;
|
||
|
public final String e;
|
||
|
public final String f;
|
||
|
public final int g;
|
||
|
public final String h;
|
||
|
public final int j;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public UA(String str, String str2, String str3, String str4, String str5, int i, List<String> list, int i2, int i3) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
C14957gcv.e(str4, "");
|
||
|
C14957gcv.e(str5, "");
|
||
|
C14957gcv.e(list, "");
|
||
|
this.e = str;
|
||
|
this.c = str2;
|
||
|
this.h = str3;
|
||
|
this.b = str4;
|
||
|
this.f = str5;
|
||
|
this.j = i;
|
||
|
this.a = list;
|
||
|
this.g = i2;
|
||
|
this.d = i3;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class HBt implements Parcelable.Creator<UA> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ UA createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new UA(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readInt(), parcel.createStringArrayList(), parcel.readInt(), parcel.readInt());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ UA[] newArray(int i) {
|
||
|
return new UA[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.e);
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.h);
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.f);
|
||
|
parcel.writeInt(this.j);
|
||
|
parcel.writeStringList(this.a);
|
||
|
parcel.writeInt(this.g);
|
||
|
parcel.writeInt(this.d);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.e;
|
||
|
String str2 = this.c;
|
||
|
String str3 = this.h;
|
||
|
String str4 = this.b;
|
||
|
String str5 = this.f;
|
||
|
int i = this.j;
|
||
|
List<String> list = this.a;
|
||
|
int i2 = this.g;
|
||
|
int i3 = this.d;
|
||
|
StringBuilder sb = new StringBuilder("PrepaidTravelWalletDisplay(currency=");
|
||
|
sb.append(str);
|
||
|
sb.append(", currencyName=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", flagImage=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", amount=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", thbEquivalentAmount=");
|
||
|
sb.append(str5);
|
||
|
sb.append(", sortSequence=");
|
||
|
sb.append(i);
|
||
|
sb.append(", allowTag=");
|
||
|
sb.append(list);
|
||
|
sb.append(", displayWalletFlag=");
|
||
|
sb.append(i2);
|
||
|
sb.append(", displayForBuyCurrencyFlag=");
|
||
|
sb.append(i3);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((((((((((((((this.e.hashCode() * 31) + this.c.hashCode()) * 31) + this.h.hashCode()) * 31) + this.b.hashCode()) * 31) + this.f.hashCode()) * 31) + Integer.hashCode(this.j)) * 31) + this.a.hashCode()) * 31) + Integer.hashCode(this.g)) * 31) + Integer.hashCode(this.d);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof UA)) {
|
||
|
return false;
|
||
|
}
|
||
|
UA ua = (UA) obj;
|
||
|
return C14957gcv.b((Object) this.e, (Object) ua.e) && C14957gcv.b((Object) this.c, (Object) ua.c) && C14957gcv.b((Object) this.h, (Object) ua.h) && C14957gcv.b((Object) this.b, (Object) ua.b) && C14957gcv.b((Object) this.f, (Object) ua.f) && this.j == ua.j && C14957gcv.b(this.a, ua.a) && this.g == ua.g && this.d == ua.d;
|
||
|
}
|
||
|
}
|