111 lines
3.7 KiB
Java
111 lines
3.7 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Iterator;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* renamed from: o.Mm, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class C0697Mm implements Parcelable {
|
||
|
public static final Parcelable.Creator<C0697Mm> CREATOR = new Sts();
|
||
|
public final String a;
|
||
|
public final List<C0714Mx> b;
|
||
|
public final String c;
|
||
|
public final String d;
|
||
|
public final String e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public C0697Mm(String str, String str2, String str3, String str4, List<C0714Mx> list) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
C14957gcv.e(str4, "");
|
||
|
C14957gcv.e(list, "");
|
||
|
this.d = str;
|
||
|
this.e = str2;
|
||
|
this.a = str3;
|
||
|
this.c = str4;
|
||
|
this.b = list;
|
||
|
}
|
||
|
|
||
|
/* renamed from: o.Mm$Sts */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class Sts implements Parcelable.Creator<C0697Mm> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ C0697Mm createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
String readString = parcel.readString();
|
||
|
String readString2 = parcel.readString();
|
||
|
String readString3 = parcel.readString();
|
||
|
String readString4 = parcel.readString();
|
||
|
int readInt = parcel.readInt();
|
||
|
ArrayList arrayList = new ArrayList(readInt);
|
||
|
for (int i = 0; i != readInt; i++) {
|
||
|
arrayList.add(C0714Mx.CREATOR.createFromParcel(parcel));
|
||
|
}
|
||
|
return new C0697Mm(readString, readString2, readString3, readString4, arrayList);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ C0697Mm[] newArray(int i) {
|
||
|
return new C0697Mm[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.e);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.c);
|
||
|
List<C0714Mx> list = this.b;
|
||
|
parcel.writeInt(list.size());
|
||
|
Iterator<C0714Mx> it = list.iterator();
|
||
|
while (it.hasNext()) {
|
||
|
it.next().writeToParcel(parcel, i);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.e;
|
||
|
String str3 = this.a;
|
||
|
String str4 = this.c;
|
||
|
List<C0714Mx> list = this.b;
|
||
|
StringBuilder sb = new StringBuilder("ETBProductDetailDisplay(productName=");
|
||
|
sb.append(str);
|
||
|
sb.append(", accountType=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", shortDesc=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", detailImageURL=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", productDetail=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((((((this.d.hashCode() * 31) + this.e.hashCode()) * 31) + this.a.hashCode()) * 31) + this.c.hashCode()) * 31) + this.b.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C0697Mm)) {
|
||
|
return false;
|
||
|
}
|
||
|
C0697Mm c0697Mm = (C0697Mm) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) c0697Mm.d) && C14957gcv.b((Object) this.e, (Object) c0697Mm.e) && C14957gcv.b((Object) this.a, (Object) c0697Mm.a) && C14957gcv.b((Object) this.c, (Object) c0697Mm.c) && C14957gcv.b(this.b, c0697Mm.b);
|
||
|
}
|
||
|
}
|