81 lines
2.4 KiB
Java
81 lines
2.4 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import o.C0690Mh;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ET implements Parcelable {
|
|
public static final Parcelable.Creator<ET> CREATOR = new IeS();
|
|
public final C0690Mh.IeS b;
|
|
public final String d;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public ET(String str, C0690Mh.IeS ieS, String str2) {
|
|
C14957gcv.e(ieS, "");
|
|
this.d = str;
|
|
this.b = ieS;
|
|
this.e = str2;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS implements Parcelable.Creator<ET> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ ET createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new ET(parcel.readString(), C0690Mh.IeS.valueOf(parcel.readString()), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ ET[] newArray(int i) {
|
|
return new ET[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.b.name());
|
|
parcel.writeString(this.e);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
C0690Mh.IeS ieS = this.b;
|
|
String str2 = this.e;
|
|
StringBuilder sb = new StringBuilder("CommonErrorActionDisplay(title=");
|
|
sb.append(str);
|
|
sb.append(", type=");
|
|
sb.append(ieS);
|
|
sb.append(", deeplink=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
int hashCode2 = this.b.hashCode();
|
|
String str2 = this.e;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof ET)) {
|
|
return false;
|
|
}
|
|
ET et = (ET) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) et.d) && this.b == et.b && C14957gcv.b((Object) this.e, (Object) et.e);
|
|
}
|
|
}
|