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

114 lines
3.4 KiB
Java
Raw 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 RN implements Parcelable {
public static final HBt CREATOR = new HBt(0);
private final String a;
public final String b;
public final String c;
public boolean d;
private final String e;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public RN(String str, String str2, String str3, String str4, boolean z) {
this.a = str;
this.b = str2;
this.e = str3;
this.c = str4;
this.d = z;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public RN(Parcel parcel) {
this(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readInt() == 1);
C14957gcv.e(parcel, "");
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeString(this.a);
parcel.writeString(this.b);
parcel.writeString(this.e);
parcel.writeString(this.c);
parcel.writeInt(this.d ? 1 : 0);
}
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<RN> {
private HBt() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ RN createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new RN(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ RN[] newArray(int i) {
return new RN[i];
}
public /* synthetic */ HBt(byte b) {
this();
}
}
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.e;
String str4 = this.c;
boolean z = this.d;
StringBuilder sb = new StringBuilder("MerchantWalletSweepTransactionItemDisplay(id=");
sb.append(str);
sb.append(", amount=");
sb.append(str2);
sb.append(", status=");
sb.append(str3);
sb.append(", timestamp=");
sb.append(str4);
sb.append(", expanded=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.c;
int hashCode4 = str4 != null ? str4.hashCode() : 0;
boolean z = this.d;
int i = z;
if (z != 0) {
i = 1;
}
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RN)) {
return false;
}
RN rn = (RN) obj;
return C14957gcv.b((Object) this.a, (Object) rn.a) && C14957gcv.b((Object) this.b, (Object) rn.b) && C14957gcv.b((Object) this.e, (Object) rn.e) && C14957gcv.b((Object) this.c, (Object) rn.c) && this.d == rn.d;
}
}