101 lines
3.0 KiB
Java
101 lines
3.0 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class HI implements Parcelable {
|
|
public static final RVV CREATOR = new RVV(0);
|
|
public String b;
|
|
public String c;
|
|
public String d;
|
|
public String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public HI(String str, String str2, String str3, String str4) {
|
|
this.d = str;
|
|
this.e = str2;
|
|
this.c = str3;
|
|
this.b = str4;
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public HI(Parcel parcel) {
|
|
this(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
|
|
C14957gcv.e(parcel, "");
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.b);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<HI> {
|
|
private RVV() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ HI createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new HI(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ HI[] newArray(int i) {
|
|
return new HI[i];
|
|
}
|
|
|
|
public /* synthetic */ RVV(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.e;
|
|
String str3 = this.c;
|
|
String str4 = this.b;
|
|
StringBuilder sb = new StringBuilder("CcSofReviewSenderDisplay(creditCardImageURL=");
|
|
sb.append(str);
|
|
sb.append(", cardHolderName=");
|
|
sb.append(str2);
|
|
sb.append(", cardRefNo=");
|
|
sb.append(str3);
|
|
sb.append(", creditCardMask=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.c;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.b;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof HI)) {
|
|
return false;
|
|
}
|
|
HI hi = (HI) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) hi.d) && C14957gcv.b((Object) this.e, (Object) hi.e) && C14957gcv.b((Object) this.c, (Object) hi.c) && C14957gcv.b((Object) this.b, (Object) hi.b);
|
|
}
|
|
}
|