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

58 lines
1.7 KiB
Java

package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class FXT {
public final String a;
public final String b;
public final String c;
public final List<XBv> d;
public FXT(String str, String str2, String str3, List<XBv> list) {
this.c = str;
this.b = str2;
this.a = str3;
this.d = list;
}
public final String toString() {
String str = this.c;
String str2 = this.b;
String str3 = this.a;
List<XBv> list = this.d;
StringBuilder sb = new StringBuilder("EasycashCreditPowerLoanRequestResult(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.c;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.a;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
List<XBv> list = this.d;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof FXT)) {
return false;
}
FXT fxt = (FXT) obj;
return C14957gcv.b((Object) this.c, (Object) fxt.c) && C14957gcv.b((Object) this.b, (Object) fxt.b) && C14957gcv.b((Object) this.a, (Object) fxt.a) && C14957gcv.b(this.d, fxt.d);
}
}