120 lines
3.7 KiB
Java
120 lines
3.7 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FV extends EQ implements Parcelable {
|
|
public static final Parcelable.Creator<FV> CREATOR = new Parcelable.Creator<FV>() { // from class: o.FV.3
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ FV createFromParcel(Parcel parcel) {
|
|
return new FV(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ FV[] newArray(int i) {
|
|
return new FV[i];
|
|
}
|
|
};
|
|
public String a;
|
|
public String b;
|
|
public String c;
|
|
public String d;
|
|
public long f;
|
|
public String g;
|
|
public String h;
|
|
public boolean i;
|
|
public String j;
|
|
|
|
@Override // o.EQ, android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
protected FV(Parcel parcel) {
|
|
this.a = parcel.readString();
|
|
this.j = parcel.readString();
|
|
this.g = parcel.readString();
|
|
this.d = parcel.readString();
|
|
this.b = parcel.readString();
|
|
this.i = parcel.readByte() != 0;
|
|
this.c = parcel.readString();
|
|
this.f = parcel.readLong();
|
|
this.h = parcel.readString();
|
|
}
|
|
|
|
@Override // o.EQ, android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.j);
|
|
parcel.writeString(this.g);
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.b);
|
|
parcel.writeByte(this.i ? (byte) 1 : (byte) 0);
|
|
parcel.writeString(this.c);
|
|
parcel.writeLong(this.f);
|
|
parcel.writeString(this.h);
|
|
}
|
|
|
|
public FV(long j, String str, String str2, String str3, String str4, String str5, String str6, String str7) {
|
|
this.f = j;
|
|
this.j = str;
|
|
this.g = str2;
|
|
this.d = str3;
|
|
this.a = str4;
|
|
this.b = str5;
|
|
this.i = true;
|
|
this.c = str6;
|
|
this.h = str7;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
FV fv = (FV) obj;
|
|
if (this.f == fv.f && this.i == fv.i && this.j.equals(fv.j) && this.g.equals(fv.g) && this.d.equals(fv.d) && this.a.equals(fv.a) && this.b.equals(fv.b) && this.c.equals(fv.c)) {
|
|
return this.h.equals(fv.h);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
long j = this.f;
|
|
int i = (int) (j ^ (j >>> 32));
|
|
int hashCode = this.j.hashCode();
|
|
int hashCode2 = this.g.hashCode();
|
|
int hashCode3 = this.d.hashCode();
|
|
int hashCode4 = this.a.hashCode();
|
|
int hashCode5 = this.b.hashCode();
|
|
boolean z = this.i;
|
|
return (((((((((((((((i * 31) + hashCode) * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (z ? 1 : 0)) * 31) + this.c.hashCode()) * 31) + this.h.hashCode();
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder("RecipientDisplay{recipientId=");
|
|
sb.append(this.f);
|
|
sb.append(", subFunction='");
|
|
sb.append(this.j);
|
|
sb.append("', nickName='");
|
|
sb.append(this.g);
|
|
sb.append("', bankName='");
|
|
sb.append(this.d);
|
|
sb.append("', bankLogo='");
|
|
sb.append(this.a);
|
|
sb.append("', accountNumber='");
|
|
sb.append(this.b);
|
|
sb.append("', selected=");
|
|
sb.append(this.i);
|
|
sb.append(", amount='");
|
|
sb.append(this.c);
|
|
sb.append("', errorDescription='");
|
|
sb.append(this.h);
|
|
sb.append("'}");
|
|
return sb.toString();
|
|
}
|
|
}
|