111 lines
3.1 KiB
Java
111 lines
3.1 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class WAu extends Pag implements Parcelable {
|
|
public static final LWm CREATOR = new LWm(0);
|
|
public final double a;
|
|
public final String c;
|
|
public final String d;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public WAu(String str, double d, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.c = str;
|
|
this.a = d;
|
|
this.d = str2;
|
|
}
|
|
|
|
/* JADX WARN: Illegal instructions before constructor call */
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public WAu(android.os.Parcel r5) {
|
|
/*
|
|
r4 = this;
|
|
java.lang.String r0 = ""
|
|
o.C14957gcv.e(r5, r0)
|
|
java.lang.String r1 = r5.readString()
|
|
if (r1 != 0) goto Lc
|
|
r1 = r0
|
|
Lc:
|
|
double r2 = r5.readDouble()
|
|
java.lang.String r5 = r5.readString()
|
|
if (r5 != 0) goto L17
|
|
goto L18
|
|
L17:
|
|
r0 = r5
|
|
L18:
|
|
r4.<init>(r1, r2, r0)
|
|
return
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: o.WAu.<init>(android.os.Parcel):void");
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.c);
|
|
parcel.writeDouble(this.a);
|
|
parcel.writeString(this.d);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm implements Parcelable.Creator<WAu> {
|
|
private LWm() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ WAu createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new WAu(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ WAu[] newArray(int i) {
|
|
return new WAu[i];
|
|
}
|
|
|
|
public /* synthetic */ LWm(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
double d = this.a;
|
|
String str2 = this.d;
|
|
StringBuilder sb = new StringBuilder("PrepaidCashOutVerification(transactionToken=");
|
|
sb.append(str);
|
|
sb.append(", fee=");
|
|
sb.append(d);
|
|
sb.append(", accountName=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.c.hashCode() * 31) + Double.hashCode(this.a)) * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof WAu)) {
|
|
return false;
|
|
}
|
|
WAu wAu = (WAu) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) wAu.c) && Double.compare(this.a, wAu.a) == 0 && C14957gcv.b((Object) this.d, (Object) wAu.d);
|
|
}
|
|
}
|