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

42 lines
982 B
Java

package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class Nlt {
public final int d;
public final List<XcE> e;
public Nlt(int i, List<XcE> list) {
C14957gcv.e(list, "");
this.d = i;
this.e = list;
}
public final String toString() {
int i = this.d;
List<XcE> list = this.e;
StringBuilder sb = new StringBuilder("CreditLineInquiry(maxCoBorrower=");
sb.append(i);
sb.append(", coBorrowerList=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (Integer.hashCode(this.d) * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Nlt)) {
return false;
}
Nlt nlt = (Nlt) obj;
return this.d == nlt.d && C14957gcv.b(this.e, nlt.e);
}
}