122 lines
3.8 KiB
Java
122 lines
3.8 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class KN implements Parcelable {
|
||
|
public static final IeS CREATOR = new IeS(0);
|
||
|
private final String a;
|
||
|
private final String b;
|
||
|
public final String d;
|
||
|
public final List<JM> e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public KN(String str, String str2, String str3, List<JM> list) {
|
||
|
C14957gcv.e(list, "");
|
||
|
this.d = str;
|
||
|
this.b = str2;
|
||
|
this.a = str3;
|
||
|
this.e = list;
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Illegal instructions before constructor call */
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public KN(android.os.Parcel r5) {
|
||
|
/*
|
||
|
r4 = this;
|
||
|
java.lang.String r0 = ""
|
||
|
o.C14957gcv.e(r5, r0)
|
||
|
java.lang.String r0 = r5.readString()
|
||
|
java.lang.String r1 = r5.readString()
|
||
|
java.lang.String r2 = r5.readString()
|
||
|
o.JM$Sts r3 = o.JM.CREATOR
|
||
|
android.os.Parcelable$Creator r3 = (android.os.Parcelable.Creator) r3
|
||
|
java.util.ArrayList r5 = r5.createTypedArrayList(r3)
|
||
|
java.util.List r5 = (java.util.List) r5
|
||
|
if (r5 != 0) goto L21
|
||
|
o.gaI r5 = o.C14851gaI.c
|
||
|
java.util.List r5 = (java.util.List) r5
|
||
|
L21:
|
||
|
r4.<init>(r0, r1, r2, r5)
|
||
|
return
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: o.KN.<init>(android.os.Parcel):void");
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeTypedList(this.e);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class IeS implements Parcelable.Creator<KN> {
|
||
|
private IeS() {
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ KN createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new KN(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ KN[] newArray(int i) {
|
||
|
return new KN[i];
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ IeS(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.b;
|
||
|
String str3 = this.a;
|
||
|
List<JM> list = this.e;
|
||
|
StringBuilder sb = new StringBuilder("EasycashCreditPowerLoanRequestResultDisplay(ncbConsent=");
|
||
|
sb.append(str);
|
||
|
sb.append(", monthlyIncome=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", repaymentAbility=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", product=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.d;
|
||
|
int hashCode = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.b;
|
||
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
||
|
String str3 = this.a;
|
||
|
return (((((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0)) * 31) + this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof KN)) {
|
||
|
return false;
|
||
|
}
|
||
|
KN kn = (KN) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) kn.d) && C14957gcv.b((Object) this.b, (Object) kn.b) && C14957gcv.b((Object) this.a, (Object) kn.a) && C14957gcv.b(this.e, kn.e);
|
||
|
}
|
||
|
}
|