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

85 lines
2.5 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* renamed from: o.ltE, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C16174ltE {
@SerializedName("riskProfile")
public final KJx a;
@SerializedName("fundList")
public final cIM b;
@SerializedName("isBoughtFund")
public final boolean c;
@SerializedName("isClient")
public final boolean d;
@SerializedName("clientList")
public final List<IJP> e;
/* JADX WARN: Multi-variable type inference failed */
public C16174ltE(boolean z, boolean z2, KJx kJx, List<? extends IJP> list, cIM cim) {
this.d = z;
this.c = z2;
this.a = kJx;
this.e = list;
this.b = cim;
}
public final String toString() {
boolean z = this.d;
boolean z2 = this.c;
KJx kJx = this.a;
List<IJP> list = this.e;
cIM cim = this.b;
StringBuilder sb = new StringBuilder("InvestmentNow(isClient=");
sb.append(z);
sb.append(", isBoughtFund=");
sb.append(z2);
sb.append(", riskProfile=");
sb.append(kJx);
sb.append(", clientList=");
sb.append(list);
sb.append(", fundList=");
sb.append(cim);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v10 */
/* JADX WARN: Type inference failed for: r0v11 */
public final int hashCode() {
boolean z = this.d;
?? r0 = z;
if (z) {
r0 = 1;
}
boolean z2 = this.c;
int i = z2 ? 1 : z2 ? 1 : 0;
KJx kJx = this.a;
int hashCode = kJx == null ? 0 : kJx.hashCode();
List<IJP> list = this.e;
int hashCode2 = list == null ? 0 : list.hashCode();
cIM cim = this.b;
return (((((((r0 * 31) + i) * 31) + hashCode) * 31) + hashCode2) * 31) + (cim != null ? cim.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C16174ltE)) {
return false;
}
C16174ltE c16174ltE = (C16174ltE) obj;
return this.d == c16174ltE.d && this.c == c16174ltE.c && C14957gcv.b(this.a, c16174ltE.a) && C14957gcv.b(this.e, c16174ltE.e) && C14957gcv.b(this.b, c16174ltE.b);
}
}