134 lines
4.2 KiB
Java
134 lines
4.2 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.airbnb.deeplinkdispatch.UrlTreeKt;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class LW extends EQ implements Parcelable {
|
|
public static final Parcelable.Creator<LW> CREATOR = new RVV();
|
|
public String a;
|
|
public List<LT> b;
|
|
public String c;
|
|
public Double d;
|
|
public String g;
|
|
public String h;
|
|
private String i;
|
|
public String j;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class HBt {
|
|
public String a;
|
|
public List<LT> b;
|
|
public String c;
|
|
public Double d;
|
|
public String e;
|
|
public String g;
|
|
public String h;
|
|
public String j;
|
|
}
|
|
|
|
public LW(String str, String str2, String str3, Double d, String str4, String str5, List<LT> list, String str6) {
|
|
this.c = str;
|
|
this.j = str2;
|
|
this.a = str3;
|
|
this.d = d;
|
|
this.h = str4;
|
|
this.g = str5;
|
|
this.b = list;
|
|
this.i = str6;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.j;
|
|
String str3 = this.a;
|
|
Double d = this.d;
|
|
String str4 = this.h;
|
|
String str5 = this.g;
|
|
List<LT> list = this.b;
|
|
StringBuilder sb = new StringBuilder("EasycashReferralDisplay{name='");
|
|
sb.append(str);
|
|
sb.append("', phone='");
|
|
sb.append(str2);
|
|
sb.append("', email='");
|
|
sb.append(str3);
|
|
sb.append("', minimumAmount=");
|
|
sb.append(d);
|
|
sb.append(", productType='");
|
|
sb.append(str4);
|
|
sb.append("', uuid='");
|
|
sb.append(str5);
|
|
sb.append("', consentDocuments=");
|
|
sb.append(list);
|
|
sb.append(UrlTreeKt.componentParamSuffix);
|
|
return sb.toString();
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<LW> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ LW createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
String readString = parcel.readString();
|
|
String readString2 = parcel.readString();
|
|
String readString3 = parcel.readString();
|
|
ArrayList arrayList = null;
|
|
Double valueOf = parcel.readInt() == 0 ? null : Double.valueOf(parcel.readDouble());
|
|
String readString4 = parcel.readString();
|
|
String readString5 = parcel.readString();
|
|
if (parcel.readInt() != 0) {
|
|
int readInt = parcel.readInt();
|
|
arrayList = new ArrayList(readInt);
|
|
for (int i = 0; i != readInt; i++) {
|
|
arrayList.add(LT.CREATOR.createFromParcel(parcel));
|
|
}
|
|
}
|
|
return new LW(readString, readString2, readString3, valueOf, readString4, readString5, arrayList, parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ LW[] newArray(int i) {
|
|
return new LW[i];
|
|
}
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public LW(HBt hBt) {
|
|
this(hBt.a, hBt.g, hBt.c, hBt.d, hBt.j, hBt.h, hBt.b, hBt.e);
|
|
C14957gcv.e(hBt, "");
|
|
}
|
|
|
|
@Override // o.EQ, android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.j);
|
|
parcel.writeString(this.a);
|
|
Double d = this.d;
|
|
if (d == null) {
|
|
parcel.writeInt(0);
|
|
} else {
|
|
parcel.writeInt(1);
|
|
parcel.writeDouble(d.doubleValue());
|
|
}
|
|
parcel.writeString(this.h);
|
|
parcel.writeString(this.g);
|
|
List<LT> list = this.b;
|
|
if (list == null) {
|
|
parcel.writeInt(0);
|
|
} else {
|
|
parcel.writeInt(1);
|
|
parcel.writeInt(list.size());
|
|
Iterator<LT> it = list.iterator();
|
|
while (it.hasNext()) {
|
|
it.next().writeToParcel(parcel, i);
|
|
}
|
|
}
|
|
parcel.writeString(this.i);
|
|
}
|
|
}
|