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

130 lines
4.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class FG implements Parcelable {
public static final Parcelable.Creator<FG> CREATOR = new HBt();
public final String a;
public final String b;
public final String c;
public final Boolean d;
public final String e;
public final String f;
private final int i;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public FG(int i, String str, String str2, String str3, Boolean bool, String str4, String str5) {
this.i = i;
this.e = str;
this.f = str2;
this.a = str3;
this.d = bool;
this.c = str4;
this.b = str5;
}
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<FG> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ FG createFromParcel(Parcel parcel) {
Boolean valueOf;
C14957gcv.e(parcel, "");
int readInt = parcel.readInt();
String readString = parcel.readString();
String readString2 = parcel.readString();
String readString3 = parcel.readString();
if (parcel.readInt() == 0) {
valueOf = null;
} else {
valueOf = Boolean.valueOf(parcel.readInt() != 0);
}
return new FG(readInt, readString, readString2, readString3, valueOf, parcel.readString(), parcel.readString());
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ FG[] newArray(int i) {
return new FG[i];
}
}
/* JADX WARN: Multi-variable type inference failed */
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
int i2;
C14957gcv.e(parcel, "");
parcel.writeInt(this.i);
parcel.writeString(this.e);
parcel.writeString(this.f);
parcel.writeString(this.a);
Boolean bool = this.d;
if (bool == null) {
i2 = 0;
} else {
parcel.writeInt(1);
i2 = bool.booleanValue();
}
parcel.writeInt(i2);
parcel.writeString(this.c);
parcel.writeString(this.b);
}
public final String toString() {
int i = this.i;
String str = this.e;
String str2 = this.f;
String str3 = this.a;
Boolean bool = this.d;
String str4 = this.c;
String str5 = this.b;
StringBuilder sb = new StringBuilder("BankingServiceTilesDisplay(sortSequence=");
sb.append(i);
sb.append(", displayType=");
sb.append(str);
sb.append(", tileName=");
sb.append(str2);
sb.append(", imageURL=");
sb.append(str3);
sb.append(", loginRequiredFlag=");
sb.append(bool);
sb.append(", firebaseEventName=");
sb.append(str4);
sb.append(", deeplinkUrl=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.i);
String str = this.e;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.f;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.a;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
Boolean bool = this.d;
int hashCode5 = bool == null ? 0 : bool.hashCode();
String str4 = this.c;
int hashCode6 = str4 == null ? 0 : str4.hashCode();
String str5 = this.b;
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (str5 != null ? str5.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof FG)) {
return false;
}
FG fg = (FG) obj;
return this.i == fg.i && C14957gcv.b((Object) this.e, (Object) fg.e) && C14957gcv.b((Object) this.f, (Object) fg.f) && C14957gcv.b((Object) this.a, (Object) fg.a) && C14957gcv.b(this.d, fg.d) && C14957gcv.b((Object) this.c, (Object) fg.c) && C14957gcv.b((Object) this.b, (Object) fg.b);
}
}