what-the-bank/sources/o/JCU.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 JCU {
@SerializedName("hasSCBAsMOA")
public final String c;
@SerializedName("depositList")
public final List<TYn> e;
public final String toString() {
String str = this.c;
List<TYn> list = this.e;
StringBuilder sb = new StringBuilder("HmlOperatingAccountEntity(hasSCBAsMOA=");
sb.append(str);
sb.append(", depositList=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
List<TYn> list = this.e;
return (hashCode * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof JCU)) {
return false;
}
JCU jcu = (JCU) obj;
return C14957gcv.b((Object) this.c, (Object) jcu.c) && C14957gcv.b(this.e, jcu.e);
}
}