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

94 lines
2.7 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;
/* renamed from: o.Ga, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0412Ga implements Parcelable {
public static final Parcelable.Creator<C0412Ga> CREATOR = new IeS();
public Integer b;
public Integer d;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public C0412Ga(Integer num, Integer num2) {
this.b = num;
this.d = num2;
}
public /* synthetic */ C0412Ga(byte b) {
this(0, 0);
}
/* renamed from: o.Ga$IeS */
/* loaded from: classes3.dex */
public static final class IeS implements Parcelable.Creator<C0412Ga> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0412Ga createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new C0412Ga(parcel.readInt() == 0 ? null : Integer.valueOf(parcel.readInt()), parcel.readInt() != 0 ? Integer.valueOf(parcel.readInt()) : null);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0412Ga[] newArray(int i) {
return new C0412Ga[i];
}
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
Integer num = this.b;
if (num == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
parcel.writeInt(num.intValue());
}
Integer num2 = this.d;
if (num2 == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
parcel.writeInt(num2.intValue());
}
}
public final String toString() {
Integer num = this.b;
Integer num2 = this.d;
StringBuilder sb = new StringBuilder("AdditionalCreditLimitDisplayModel(baseCreditLimit=");
sb.append(num);
sb.append(", maxCreditLimit=");
sb.append(num2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Integer num = this.b;
int hashCode = num == null ? 0 : num.hashCode();
Integer num2 = this.d;
return (hashCode * 31) + (num2 != null ? num2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0412Ga)) {
return false;
}
C0412Ga c0412Ga = (C0412Ga) obj;
return C14957gcv.b(this.b, c0412Ga.b) && C14957gcv.b(this.d, c0412Ga.d);
}
public C0412Ga() {
this((byte) 0);
}
}