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

44 lines
1.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class JjI {
@SerializedName("scbsDepositList")
public final List<PfZ> a;
@SerializedName("mfDepositList")
public final List<PfZ> c;
public final String toString() {
List<PfZ> list = this.c;
List<PfZ> list2 = this.a;
StringBuilder sb = new StringBuilder("SingleFormSelectAccountEntity(mfDepositList=");
sb.append(list);
sb.append(", scbsDepositList=");
sb.append(list2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
List<PfZ> list = this.c;
int hashCode = list == null ? 0 : list.hashCode();
List<PfZ> list2 = this.a;
return (hashCode * 31) + (list2 != null ? list2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof JjI)) {
return false;
}
JjI jjI = (JjI) obj;
return C14957gcv.b(this.c, jjI.c) && C14957gcv.b(this.a, jjI.a);
}
}