128 lines
4.4 KiB
Java
128 lines
4.4 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class IF implements Parcelable {
|
||
|
public static final Parcelable.Creator<IF> CREATOR = new RVV();
|
||
|
public final String a;
|
||
|
public final String b;
|
||
|
public final String c;
|
||
|
public final String d;
|
||
|
public final String e;
|
||
|
public final String f;
|
||
|
public final String h;
|
||
|
public final String i;
|
||
|
public final String j;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public IF(String str, String str2, String str3, String str4, String str5, String str6, String str7, String str8, String str9) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
C14957gcv.e(str4, "");
|
||
|
C14957gcv.e(str5, "");
|
||
|
C14957gcv.e(str7, "");
|
||
|
C14957gcv.e(str8, "");
|
||
|
this.b = str;
|
||
|
this.c = str2;
|
||
|
this.e = str3;
|
||
|
this.f = str4;
|
||
|
this.i = str5;
|
||
|
this.d = str6;
|
||
|
this.h = str7;
|
||
|
this.a = str8;
|
||
|
this.j = str9;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class RVV implements Parcelable.Creator<IF> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ IF createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new IF(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ IF[] newArray(int i) {
|
||
|
return new IF[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.e);
|
||
|
parcel.writeString(this.f);
|
||
|
parcel.writeString(this.i);
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.h);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.j);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
String str2 = this.c;
|
||
|
String str3 = this.e;
|
||
|
String str4 = this.f;
|
||
|
String str5 = this.i;
|
||
|
String str6 = this.d;
|
||
|
String str7 = this.h;
|
||
|
String str8 = this.a;
|
||
|
String str9 = this.j;
|
||
|
StringBuilder sb = new StringBuilder("CrossMatchConsentDisplay(consentType=");
|
||
|
sb.append(str);
|
||
|
sb.append(", consentVersion=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", consentSubType=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", userType=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", subFunction=");
|
||
|
sb.append(str5);
|
||
|
sb.append(", channel=");
|
||
|
sb.append(str6);
|
||
|
sb.append(", title=");
|
||
|
sb.append(str7);
|
||
|
sb.append(", body=");
|
||
|
sb.append(str8);
|
||
|
sb.append(", sessionId=");
|
||
|
sb.append(str9);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.b.hashCode();
|
||
|
int hashCode2 = this.c.hashCode();
|
||
|
int hashCode3 = this.e.hashCode();
|
||
|
int hashCode4 = this.f.hashCode();
|
||
|
int hashCode5 = this.i.hashCode();
|
||
|
String str = this.d;
|
||
|
int hashCode6 = str == null ? 0 : str.hashCode();
|
||
|
int hashCode7 = this.h.hashCode();
|
||
|
int hashCode8 = this.a.hashCode();
|
||
|
String str2 = this.j;
|
||
|
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (str2 != null ? str2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof IF)) {
|
||
|
return false;
|
||
|
}
|
||
|
IF r5 = (IF) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) r5.b) && C14957gcv.b((Object) this.c, (Object) r5.c) && C14957gcv.b((Object) this.e, (Object) r5.e) && C14957gcv.b((Object) this.f, (Object) r5.f) && C14957gcv.b((Object) this.i, (Object) r5.i) && C14957gcv.b((Object) this.d, (Object) r5.d) && C14957gcv.b((Object) this.h, (Object) r5.h) && C14957gcv.b((Object) this.a, (Object) r5.a) && C14957gcv.b((Object) this.j, (Object) r5.j);
|
||
|
}
|
||
|
}
|