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

49 lines
1.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* renamed from: o.cY, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C6615cY {
@SerializedName("tilesVersion")
private final String a;
@SerializedName("prepaidCardList")
public final List<C8979db> e;
public C6615cY(List<C8979db> list, String str) {
C14957gcv.e(list, "");
C14957gcv.e(str, "");
this.e = list;
this.a = str;
}
public final String toString() {
List<C8979db> list = this.e;
String str = this.a;
StringBuilder sb = new StringBuilder("PrepaidCardSummaryRequest(prepaidCardList=");
sb.append(list);
sb.append(", tilesVersion=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.e.hashCode() * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C6615cY)) {
return false;
}
C6615cY c6615cY = (C6615cY) obj;
return C14957gcv.b(this.e, c6615cY.e) && C14957gcv.b((Object) this.a, (Object) c6615cY.a);
}
}