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

174 lines
5.8 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 RU implements Parcelable {
public static final Parcelable.Creator<RU> CREATOR;
public final String a;
public final String b;
public final String c;
public String d;
public final String e;
public final String f;
public String g;
public boolean h;
public String i;
public final String j;
/* renamed from: o, reason: collision with root package name */
private final String f8343o;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public RU(String str, String str2, String str3, String str4, String str5, String str6, String str7, boolean z, String str8, String str9, String str10) {
this.f8343o = str;
this.b = str2;
this.j = str3;
this.e = str4;
this.f = str5;
this.a = str6;
this.c = str7;
this.h = z;
this.d = str8;
this.i = str9;
this.g = str10;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public RU(Parcel parcel) {
this(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), 1 == parcel.readInt(), 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.f8343o);
parcel.writeString(this.b);
parcel.writeString(this.j);
parcel.writeString(this.e);
parcel.writeString(this.f);
parcel.writeString(this.a);
parcel.writeString(this.c);
parcel.writeInt(this.h ? 1 : 0);
parcel.writeString(this.d);
parcel.writeString(this.i);
parcel.writeString(this.g);
}
/* loaded from: classes3.dex */
public static final class RVV {
private RVV() {
}
public /* synthetic */ RVV(byte b) {
this();
}
}
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<RU> {
HBt() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ RU createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new RU(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ RU[] newArray(int i) {
return new RU[i];
}
}
static {
new RVV((byte) 0);
CREATOR = new HBt();
}
public final String toString() {
String str = this.f8343o;
String str2 = this.b;
String str3 = this.j;
String str4 = this.e;
String str5 = this.f;
String str6 = this.a;
String str7 = this.c;
boolean z = this.h;
String str8 = this.d;
String str9 = this.i;
String str10 = this.g;
StringBuilder sb = new StringBuilder("MerchantWalletTransactionItemDisplay(id=");
sb.append(str);
sb.append(", channel=");
sb.append(str2);
sb.append(", timestamp=");
sb.append(str3);
sb.append(", amount=");
sb.append(str4);
sb.append(", description=");
sb.append(str5);
sb.append(", buyerBank=");
sb.append(str6);
sb.append(", buyerName=");
sb.append(str7);
sb.append(", expanded=");
sb.append(z);
sb.append(", debitCreditFlag=");
sb.append(str8);
sb.append(", transactionType=");
sb.append(str9);
sb.append(", expandFlag=");
sb.append(str10);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
String str = this.f8343o;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.j;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.e;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.f;
int hashCode5 = str5 == null ? 0 : str5.hashCode();
String str6 = this.a;
int hashCode6 = str6 == null ? 0 : str6.hashCode();
String str7 = this.c;
int hashCode7 = str7 == null ? 0 : str7.hashCode();
boolean z = this.h;
int i = z;
if (z != 0) {
i = 1;
}
String str8 = this.d;
int hashCode8 = str8 == null ? 0 : str8.hashCode();
String str9 = this.i;
int hashCode9 = str9 == null ? 0 : str9.hashCode();
String str10 = this.g;
return (((((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + i) * 31) + hashCode8) * 31) + hashCode9) * 31) + (str10 != null ? str10.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RU)) {
return false;
}
RU ru = (RU) obj;
return C14957gcv.b((Object) this.f8343o, (Object) ru.f8343o) && C14957gcv.b((Object) this.b, (Object) ru.b) && C14957gcv.b((Object) this.j, (Object) ru.j) && C14957gcv.b((Object) this.e, (Object) ru.e) && C14957gcv.b((Object) this.f, (Object) ru.f) && C14957gcv.b((Object) this.a, (Object) ru.a) && C14957gcv.b((Object) this.c, (Object) ru.c) && this.h == ru.h && C14957gcv.b((Object) this.d, (Object) ru.d) && C14957gcv.b((Object) this.i, (Object) ru.i) && C14957gcv.b((Object) this.g, (Object) ru.g);
}
}