what-the-bank/sources/o/FQ.java

172 lines
5.6 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
import com.airbnb.deeplinkdispatch.UrlTreeKt;
/* loaded from: classes3.dex */
public final class FQ extends EQ implements Parcelable {
public static final Parcelable.Creator<FQ> CREATOR = new Parcelable.Creator<FQ>() { // from class: o.FQ.3
@Override // android.os.Parcelable.Creator
public final /* synthetic */ FQ createFromParcel(Parcel parcel) {
return new FQ(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ FQ[] newArray(int i) {
return new FQ[i];
}
};
public String a;
public String b;
public String c;
public String d;
public String f;
public boolean g;
public boolean h;
public String i;
public String j;
public String k;
/* renamed from: o, reason: collision with root package name */
public String f8160o;
@Override // o.EQ, android.os.Parcelable
public final int describeContents() {
return 0;
}
private FQ() {
}
public static FQ e() {
return new FQ();
}
@Override // o.EQ, android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.a);
parcel.writeString(this.d);
parcel.writeByte(this.g ? (byte) 1 : (byte) 0);
parcel.writeString(this.f);
parcel.writeString(this.b);
parcel.writeString(this.f8160o);
parcel.writeString(this.i);
parcel.writeString(this.c);
parcel.writeString(this.k);
parcel.writeString(this.j);
parcel.writeByte(this.h ? (byte) 1 : (byte) 0);
}
protected FQ(Parcel parcel) {
this.a = parcel.readString();
this.d = parcel.readString();
this.g = parcel.readByte() != 0;
this.f = parcel.readString();
this.b = parcel.readString();
this.f8160o = parcel.readString();
this.i = parcel.readString();
this.c = parcel.readString();
this.k = parcel.readString();
this.j = parcel.readString();
this.h = parcel.readByte() != 0;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
FQ fq = (FQ) obj;
if (this.g != fq.g || this.h != fq.h) {
return false;
}
String str = this.a;
if (str == null ? fq.a != null : !str.equals(fq.a)) {
return false;
}
String str2 = this.d;
if (str2 == null ? fq.d != null : !str2.equals(fq.d)) {
return false;
}
String str3 = this.f;
if (str3 == null ? fq.f != null : !str3.equals(fq.f)) {
return false;
}
String str4 = this.b;
if (str4 == null ? fq.b != null : !str4.equals(fq.b)) {
return false;
}
String str5 = this.f8160o;
if (str5 == null ? fq.f8160o != null : !str5.equals(fq.f8160o)) {
return false;
}
String str6 = this.i;
if (str6 == null ? fq.i != null : !str6.equals(fq.i)) {
return false;
}
String str7 = this.c;
if (str7 == null ? fq.c != null : !str7.equals(fq.c)) {
return false;
}
String str8 = this.k;
if (str8 == null ? fq.k != null : !str8.equals(fq.k)) {
return false;
}
String str9 = this.j;
String str10 = fq.j;
return str9 != null ? str9.equals(str10) : str10 == null;
}
public final int hashCode() {
String str = this.a;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.d;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
boolean z = this.g;
String str3 = this.f;
int hashCode3 = str3 != null ? str3.hashCode() : 0;
String str4 = this.b;
int hashCode4 = str4 != null ? str4.hashCode() : 0;
String str5 = this.f8160o;
int hashCode5 = str5 != null ? str5.hashCode() : 0;
String str6 = this.i;
int hashCode6 = str6 != null ? str6.hashCode() : 0;
String str7 = this.c;
int hashCode7 = str7 != null ? str7.hashCode() : 0;
String str8 = this.k;
int hashCode8 = str8 != null ? str8.hashCode() : 0;
String str9 = this.j;
return (((((((((((((((((((hashCode * 31) + hashCode2) * 31) + (z ? 1 : 0)) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (str9 != null ? str9.hashCode() : 0)) * 31) + (this.h ? 1 : 0);
}
public final String toString() {
StringBuilder sb = new StringBuilder("BulkTransferSuccessItemDisplay{bankLogo='");
sb.append(this.a);
sb.append("', accountName='");
sb.append(this.d);
sb.append("', successFlag=");
sb.append(this.g);
sb.append(", nickName='");
sb.append(this.f);
sb.append("', accountNumber='");
sb.append(this.b);
sb.append("', transferAmount='");
sb.append(this.f8160o);
sb.append("', fee='");
sb.append(this.i);
sb.append("', errorMessage='");
sb.append(this.c);
sb.append("', transactionId='");
sb.append(this.k);
sb.append("', transactionDateTime='");
sb.append(this.j);
sb.append("', isScheduled=");
sb.append(this.h);
sb.append(UrlTreeKt.componentParamSuffixChar);
return sb.toString();
}
}