95 lines
3.0 KiB
Java
95 lines
3.0 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class IE implements Parcelable {
|
|
public static final Parcelable.Creator<IE> CREATOR = new IeS();
|
|
public final String a;
|
|
public final String b;
|
|
public final String c;
|
|
public final String d;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public IE(String str, String str2, String str3, String str4, String str5) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str5, "");
|
|
this.a = str;
|
|
this.b = str2;
|
|
this.e = str3;
|
|
this.d = str4;
|
|
this.c = str5;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS implements Parcelable.Creator<IE> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ IE createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new IE(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ IE[] newArray(int i) {
|
|
return new IE[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.c);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
String str3 = this.e;
|
|
String str4 = this.d;
|
|
String str5 = this.c;
|
|
StringBuilder sb = new StringBuilder("FaceIdentificationConsentDisplay(body=");
|
|
sb.append(str);
|
|
sb.append(", consentType=");
|
|
sb.append(str2);
|
|
sb.append(", consentVersion=");
|
|
sb.append(str3);
|
|
sb.append(", function=");
|
|
sb.append(str4);
|
|
sb.append(", sessionId=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.a.hashCode();
|
|
int hashCode2 = this.b.hashCode();
|
|
int hashCode3 = this.e.hashCode();
|
|
String str = this.d;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str == null ? 0 : str.hashCode())) * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof IE)) {
|
|
return false;
|
|
}
|
|
IE ie = (IE) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) ie.a) && C14957gcv.b((Object) this.b, (Object) ie.b) && C14957gcv.b((Object) this.e, (Object) ie.e) && C14957gcv.b((Object) this.d, (Object) ie.d) && C14957gcv.b((Object) this.c, (Object) ie.c);
|
|
}
|
|
}
|