104 lines
3.3 KiB
Java
104 lines
3.3 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class LT implements Parcelable {
|
|
public static final Parcelable.Creator<LT> CREATOR = new IeS();
|
|
public final String a;
|
|
public Integer b;
|
|
public final String c;
|
|
public final String d;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public LT(Integer num, String str, String str2, String str3, String str4) {
|
|
this.b = num;
|
|
this.c = str;
|
|
this.e = str2;
|
|
this.d = str3;
|
|
this.a = str4;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS implements Parcelable.Creator<LT> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ LT createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new LT(parcel.readInt() == 0 ? null : Integer.valueOf(parcel.readInt()), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ LT[] newArray(int i) {
|
|
return new LT[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
int intValue;
|
|
C14957gcv.e(parcel, "");
|
|
Integer num = this.b;
|
|
if (num == null) {
|
|
intValue = 0;
|
|
} else {
|
|
parcel.writeInt(1);
|
|
intValue = num.intValue();
|
|
}
|
|
parcel.writeInt(intValue);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.a);
|
|
}
|
|
|
|
public final String toString() {
|
|
Integer num = this.b;
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.d;
|
|
String str4 = this.a;
|
|
StringBuilder sb = new StringBuilder("EasycashConsentDocumentDisplay(sequence=");
|
|
sb.append(num);
|
|
sb.append(", content=");
|
|
sb.append(str);
|
|
sb.append(", consentType=");
|
|
sb.append(str2);
|
|
sb.append(", contentSource=");
|
|
sb.append(str3);
|
|
sb.append(", contentTitle=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Integer num = this.b;
|
|
int hashCode = num == null ? 0 : num.hashCode();
|
|
String str = this.c;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode3 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
int hashCode4 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.a;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str4 != null ? str4.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof LT)) {
|
|
return false;
|
|
}
|
|
LT lt = (LT) obj;
|
|
return C14957gcv.b(this.b, lt.b) && C14957gcv.b((Object) this.c, (Object) lt.c) && C14957gcv.b((Object) this.e, (Object) lt.e) && C14957gcv.b((Object) this.d, (Object) lt.d) && C14957gcv.b((Object) this.a, (Object) lt.a);
|
|
}
|
|
}
|