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

123 lines
4.0 KiB
Java
Raw Permalink 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 HL implements Parcelable {
public static final HBt CREATOR = new HBt(0);
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
private final int h;
private final int i;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public HL(int i, int i2, String str, String str2, String str3, String str4, String str5) {
this.i = i;
this.h = i2;
this.e = str;
this.d = str2;
this.b = str3;
this.a = str4;
this.c = str5;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public HL(Parcel parcel) {
this(parcel.readInt(), parcel.readInt(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
C14957gcv.e(parcel, "");
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeInt(this.i);
parcel.writeInt(this.h);
parcel.writeString(this.e);
parcel.writeString(this.d);
parcel.writeString(this.b);
parcel.writeString(this.a);
parcel.writeString(this.c);
}
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<HL> {
private HBt() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ HL createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new HL(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ HL[] newArray(int i) {
return new HL[i];
}
public /* synthetic */ HBt(byte b) {
this();
}
}
public final String toString() {
int i = this.i;
int i2 = this.h;
String str = this.e;
String str2 = this.d;
String str3 = this.b;
String str4 = this.a;
String str5 = this.c;
StringBuilder sb = new StringBuilder("InstallmentPlansExtDisplay(ippType=");
sb.append(i);
sb.append(", tenure=");
sb.append(i2);
sb.append(", cardInterestRate=");
sb.append(str);
sb.append(", cardInterestAmount=");
sb.append(str2);
sb.append(", monthlyInstallmentAmount=");
sb.append(str3);
sb.append(", yearlyCardInterestRate=");
sb.append(str4);
sb.append(", totalAmount=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.i);
int hashCode2 = Integer.hashCode(this.h);
String str = this.e;
int hashCode3 = str == null ? 0 : str.hashCode();
String str2 = this.d;
int hashCode4 = str2 == null ? 0 : str2.hashCode();
String str3 = this.b;
int hashCode5 = str3 == null ? 0 : str3.hashCode();
String str4 = this.a;
int hashCode6 = str4 == null ? 0 : str4.hashCode();
String str5 = this.c;
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 HL)) {
return false;
}
HL hl = (HL) obj;
return this.i == hl.i && this.h == hl.h && C14957gcv.b((Object) this.e, (Object) hl.e) && C14957gcv.b((Object) this.d, (Object) hl.d) && C14957gcv.b((Object) this.b, (Object) hl.b) && C14957gcv.b((Object) this.a, (Object) hl.a) && C14957gcv.b((Object) this.c, (Object) hl.c);
}
}