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