117 lines
3.8 KiB
Java
117 lines
3.8 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 GT implements Parcelable {
|
||
|
public static final Parcelable.Creator<GT> CREATOR = new Sts();
|
||
|
public String a;
|
||
|
public String b;
|
||
|
public String c;
|
||
|
public String d;
|
||
|
public List<GS> e;
|
||
|
private String h;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public GT(String str, String str2, String str3, String str4, String str5, List<GS> list) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
C14957gcv.e(str4, "");
|
||
|
C14957gcv.e(str5, "");
|
||
|
C14957gcv.e(list, "");
|
||
|
this.b = str;
|
||
|
this.d = str2;
|
||
|
this.a = str3;
|
||
|
this.c = str4;
|
||
|
this.h = str5;
|
||
|
this.e = list;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class Sts implements Parcelable.Creator<GT> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ GT createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
String readString = parcel.readString();
|
||
|
String readString2 = parcel.readString();
|
||
|
String readString3 = parcel.readString();
|
||
|
String readString4 = parcel.readString();
|
||
|
String readString5 = parcel.readString();
|
||
|
int readInt = parcel.readInt();
|
||
|
ArrayList arrayList = new ArrayList(readInt);
|
||
|
for (int i = 0; i != readInt; i++) {
|
||
|
arrayList.add(GS.CREATOR.createFromParcel(parcel));
|
||
|
}
|
||
|
return new GT(readString, readString2, readString3, readString4, readString5, arrayList);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ GT[] newArray(int i) {
|
||
|
return new GT[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.h);
|
||
|
List<GS> list = this.e;
|
||
|
parcel.writeInt(list.size());
|
||
|
Iterator<GS> it = list.iterator();
|
||
|
while (it.hasNext()) {
|
||
|
it.next().writeToParcel(parcel, i);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
String str2 = this.d;
|
||
|
String str3 = this.a;
|
||
|
String str4 = this.c;
|
||
|
String str5 = this.h;
|
||
|
List<GS> list = this.e;
|
||
|
StringBuilder sb = new StringBuilder("StatementChannelDisplay(channelName=");
|
||
|
sb.append(str);
|
||
|
sb.append(", channel=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", email=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", address=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", verifyEmail=");
|
||
|
sb.append(str5);
|
||
|
sb.append(", channels=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((((((((this.b.hashCode() * 31) + this.d.hashCode()) * 31) + this.a.hashCode()) * 31) + this.c.hashCode()) * 31) + this.h.hashCode()) * 31) + this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof GT)) {
|
||
|
return false;
|
||
|
}
|
||
|
GT gt = (GT) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) gt.b) && C14957gcv.b((Object) this.d, (Object) gt.d) && C14957gcv.b((Object) this.a, (Object) gt.a) && C14957gcv.b((Object) this.c, (Object) gt.c) && C14957gcv.b((Object) this.h, (Object) gt.h) && C14957gcv.b(this.e, gt.e);
|
||
|
}
|
||
|
}
|