72 lines
2.0 KiB
Java
72 lines
2.0 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class ID implements Parcelable {
|
||
|
public static final Parcelable.Creator<ID> CREATOR = new LWm();
|
||
|
public final String a;
|
||
|
public final String c;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public ID(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
this.a = str;
|
||
|
this.c = str2;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class LWm implements Parcelable.Creator<ID> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ ID createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new ID(parcel.readString(), parcel.readString());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ ID[] newArray(int i) {
|
||
|
return new ID[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.c);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
String str2 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("CSentCardXInitiateDisplay(consentURL=");
|
||
|
sb.append(str);
|
||
|
sb.append(", consentInfo=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.a.hashCode();
|
||
|
String str = this.c;
|
||
|
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof ID)) {
|
||
|
return false;
|
||
|
}
|
||
|
ID id = (ID) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) id.a) && C14957gcv.b((Object) this.c, (Object) id.c);
|
||
|
}
|
||
|
}
|