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

41 lines
1.0 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class RRd {
@SerializedName("statementAccountList")
public final List<rUX> b;
@SerializedName("accountNumberLimit")
public final String c;
public final String toString() {
List<rUX> list = this.b;
String str = this.c;
StringBuilder sb = new StringBuilder("NdidAccountsInquiryEntity(statementAccountList=");
sb.append(list);
sb.append(", accountNumberLimit=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.b.hashCode() * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RRd)) {
return false;
}
RRd rRd = (RRd) obj;
return C14957gcv.b(this.b, rRd.b) && C14957gcv.b((Object) this.c, (Object) rRd.c);
}
}