package o; import java.util.List; /* loaded from: classes3.dex */ public final class IR { public final String d; public final List e; /* JADX WARN: Multi-variable type inference failed */ public IR(String str, List list) { C14957gcv.e(str, ""); C14957gcv.e(list, ""); this.d = str; this.e = list; } public final String toString() { String str = this.d; List list = this.e; StringBuilder sb = new StringBuilder("CustomCreditCardPageSelectorDisplay(titleText="); sb.append(str); sb.append(", cards="); sb.append(list); sb.append(")"); return sb.toString(); } public final int hashCode() { return (this.d.hashCode() * 31) + this.e.hashCode(); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof IR)) { return false; } IR ir = (IR) obj; return C14957gcv.b((Object) this.d, (Object) ir.d) && C14957gcv.b(this.e, ir.e); } }