121 lines
4.0 KiB
Java
121 lines
4.0 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class LA implements Parcelable {
|
|
public static final Parcelable.Creator<LA> CREATOR = new HBt();
|
|
public final List<LT> a;
|
|
public final String b;
|
|
public final String c;
|
|
public final List<C0675Lz> d;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public LA(String str, String str2, String str3, List<C0675Lz> list, List<LT> list2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(list, "");
|
|
C14957gcv.e(list2, "");
|
|
this.e = str;
|
|
this.c = str2;
|
|
this.b = str3;
|
|
this.d = list;
|
|
this.a = list2;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class HBt implements Parcelable.Creator<LA> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ LA createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
String readString = parcel.readString();
|
|
String readString2 = parcel.readString();
|
|
String readString3 = parcel.readString();
|
|
int readInt = parcel.readInt();
|
|
ArrayList arrayList = new ArrayList(readInt);
|
|
for (int i = 0; i != readInt; i++) {
|
|
arrayList.add(C0675Lz.CREATOR.createFromParcel(parcel));
|
|
}
|
|
ArrayList arrayList2 = arrayList;
|
|
int readInt2 = parcel.readInt();
|
|
ArrayList arrayList3 = new ArrayList(readInt2);
|
|
for (int i2 = 0; i2 != readInt2; i2++) {
|
|
arrayList3.add(LT.CREATOR.createFromParcel(parcel));
|
|
}
|
|
return new LA(readString, readString2, readString3, arrayList2, arrayList3);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ LA[] newArray(int i) {
|
|
return new LA[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.b);
|
|
List<C0675Lz> list = this.d;
|
|
parcel.writeInt(list.size());
|
|
Iterator<C0675Lz> it = list.iterator();
|
|
while (it.hasNext()) {
|
|
it.next().writeToParcel(parcel, i);
|
|
}
|
|
List<LT> list2 = this.a;
|
|
parcel.writeInt(list2.size());
|
|
Iterator<LT> it2 = list2.iterator();
|
|
while (it2.hasNext()) {
|
|
it2.next().writeToParcel(parcel, i);
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.c;
|
|
String str3 = this.b;
|
|
List<C0675Lz> list = this.d;
|
|
List<LT> list2 = this.a;
|
|
StringBuilder sb = new StringBuilder("EasycashProductDetailsDisplay(imageURL=");
|
|
sb.append(str);
|
|
sb.append(", name=");
|
|
sb.append(str2);
|
|
sb.append(", description=");
|
|
sb.append(str3);
|
|
sb.append(", sectionList=");
|
|
sb.append(list);
|
|
sb.append(", consentDocuments=");
|
|
sb.append(list2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.e.hashCode();
|
|
String str = this.c;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0)) * 31) + this.d.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof LA)) {
|
|
return false;
|
|
}
|
|
LA la = (LA) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) la.e) && C14957gcv.b((Object) this.c, (Object) la.c) && C14957gcv.b((Object) this.b, (Object) la.b) && C14957gcv.b(this.d, la.d) && C14957gcv.b(this.a, la.a);
|
|
}
|
|
}
|