80 lines
2.0 KiB
Java
80 lines
2.0 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class CKC {
|
|
|
|
@SerializedName("tilesVersion")
|
|
private String c;
|
|
|
|
@SerializedName("depositList")
|
|
private List<RVV> e;
|
|
|
|
public CKC(List<RVV> list, String str) {
|
|
C14957gcv.e(list, "");
|
|
this.e = list;
|
|
this.c = str;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV {
|
|
|
|
@SerializedName("accountNo")
|
|
private String d;
|
|
|
|
public RVV(String str) {
|
|
C14957gcv.e(str, "");
|
|
this.d = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
StringBuilder sb = new StringBuilder("DepositItemRequest(accountNo=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof RVV) && C14957gcv.b((Object) this.d, (Object) ((RVV) obj).d);
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
List<RVV> list = this.e;
|
|
String str = this.c;
|
|
StringBuilder sb = new StringBuilder("DepositListRequest(depositList=");
|
|
sb.append(list);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.e.hashCode();
|
|
String str = this.c;
|
|
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof CKC)) {
|
|
return false;
|
|
}
|
|
CKC ckc = (CKC) obj;
|
|
return C14957gcv.b(this.e, ckc.e) && C14957gcv.b((Object) this.c, (Object) ckc.c);
|
|
}
|
|
}
|