78 lines
2.3 KiB
Java
78 lines
2.3 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class IHF implements Parcelable {
|
|
public static final Parcelable.Creator<IHF> CREATOR = new Sts();
|
|
public final String b;
|
|
public final String d;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public IHF(String str, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.b = str;
|
|
this.e = str2;
|
|
this.d = str3;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class Sts implements Parcelable.Creator<IHF> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ IHF createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new IHF(parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ IHF[] newArray(int i) {
|
|
return new IHF[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.d);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.e;
|
|
String str3 = this.d;
|
|
StringBuilder sb = new StringBuilder("NdidCommonData(transactionId=");
|
|
sb.append(str);
|
|
sb.append(", ekycMethod=");
|
|
sb.append(str2);
|
|
sb.append(", userType=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.b.hashCode() * 31) + this.e.hashCode()) * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof IHF)) {
|
|
return false;
|
|
}
|
|
IHF ihf = (IHF) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) ihf.b) && C14957gcv.b((Object) this.e, (Object) ihf.e) && C14957gcv.b((Object) this.d, (Object) ihf.d);
|
|
}
|
|
}
|