124 lines
3.8 KiB
Java
124 lines
3.8 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class XV implements Parcelable {
|
|
public static final Parcelable.Creator<XV> CREATOR = new RVV();
|
|
public String a;
|
|
public String b;
|
|
public String c;
|
|
public String d;
|
|
public XQ e;
|
|
public XR g;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public XV(String str, String str2, XQ xq, String str3, XR xr, String str4) {
|
|
this.a = str;
|
|
this.b = str2;
|
|
this.e = xq;
|
|
this.d = str3;
|
|
this.g = xr;
|
|
this.c = str4;
|
|
}
|
|
|
|
private /* synthetic */ XV(byte b) {
|
|
this(null, null, null, null, null, null);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<XV> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ XV createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new XV(parcel.readString(), parcel.readString(), parcel.readInt() == 0 ? null : XQ.CREATOR.createFromParcel(parcel), parcel.readString(), parcel.readInt() != 0 ? XR.CREATOR.createFromParcel(parcel) : null, parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ XV[] newArray(int i) {
|
|
return new XV[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.b);
|
|
XQ xq = this.e;
|
|
if (xq == null) {
|
|
parcel.writeInt(0);
|
|
} else {
|
|
parcel.writeInt(1);
|
|
xq.writeToParcel(parcel, i);
|
|
}
|
|
parcel.writeString(this.d);
|
|
XR xr = this.g;
|
|
if (xr == null) {
|
|
parcel.writeInt(0);
|
|
} else {
|
|
parcel.writeInt(1);
|
|
xr.writeToParcel(parcel, i);
|
|
}
|
|
parcel.writeString(this.c);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
XQ xq = this.e;
|
|
String str3 = this.d;
|
|
XR xr = this.g;
|
|
String str4 = this.c;
|
|
StringBuilder sb = new StringBuilder("PullSlipReceiverDisplay(bankLogo=");
|
|
sb.append(str);
|
|
sb.append(", name=");
|
|
sb.append(str2);
|
|
sb.append(", accountType=");
|
|
sb.append(xq);
|
|
sb.append(", accountNumber=");
|
|
sb.append(str3);
|
|
sb.append(", proxyType=");
|
|
sb.append(xr);
|
|
sb.append(", proxyNumber=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
XQ xq = this.e;
|
|
int hashCode3 = xq == null ? 0 : xq.hashCode();
|
|
String str3 = this.d;
|
|
int hashCode4 = str3 == null ? 0 : str3.hashCode();
|
|
XR xr = this.g;
|
|
int hashCode5 = xr == null ? 0 : xr.hashCode();
|
|
String str4 = this.c;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str4 != null ? str4.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof XV)) {
|
|
return false;
|
|
}
|
|
XV xv = (XV) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) xv.a) && C14957gcv.b((Object) this.b, (Object) xv.b) && this.e == xv.e && C14957gcv.b((Object) this.d, (Object) xv.d) && this.g == xv.g && C14957gcv.b((Object) this.c, (Object) xv.c);
|
|
}
|
|
|
|
public XV() {
|
|
this((byte) 0);
|
|
}
|
|
}
|