package o; import java.util.List; /* loaded from: classes3.dex */ public final class odT { public final List a; public final String b; public final String c; /* JADX WARN: Multi-variable type inference failed */ public odT(String str, String str2, List list) { C14957gcv.e(str, ""); C14957gcv.e(str2, ""); this.c = str; this.b = str2; this.a = list; } public final String toString() { String str = this.c; String str2 = this.b; List list = this.a; StringBuilder sb = new StringBuilder("CommercialCalculation(loanAmount="); sb.append(str); sb.append(", duration="); sb.append(str2); sb.append(", details="); sb.append(list); sb.append(")"); return sb.toString(); } public final int hashCode() { int hashCode = this.c.hashCode(); int hashCode2 = this.b.hashCode(); List list = this.a; return (((hashCode * 31) + hashCode2) * 31) + (list == null ? 0 : list.hashCode()); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof odT)) { return false; } odT odt = (odT) obj; return C14957gcv.b((Object) this.c, (Object) odt.c) && C14957gcv.b((Object) this.b, (Object) odt.b) && C14957gcv.b(this.a, odt.a); } }