package o; import java.util.List; /* loaded from: classes3.dex */ public final class wOc { public final List a; public final int b; public final String c; public wOc(String str, int i, List list) { this.c = str; this.b = i; this.a = list; } public final String toString() { String str = this.c; int i = this.b; List list = this.a; StringBuilder sb = new StringBuilder("Limit(amountRemark="); sb.append(str); sb.append(", maxLimitTransaction="); sb.append(i); sb.append(", remainingLimits="); sb.append(list); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.c; int hashCode = str == null ? 0 : str.hashCode(); int hashCode2 = Integer.hashCode(this.b); List list = this.a; return (((hashCode * 31) + hashCode2) * 31) + (list != null ? list.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof wOc)) { return false; } wOc woc = (wOc) obj; return C14957gcv.b((Object) this.c, (Object) woc.c) && this.b == woc.b && C14957gcv.b(this.a, woc.a); } }