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

54 lines
1.4 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class ZWw {
@SerializedName("tilesVersion")
private final String b;
@SerializedName("allTilesFlag")
private final int c;
@SerializedName("userMode")
private final String e;
public ZWw(String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.b = str;
this.e = str2;
this.c = 0;
}
public final String toString() {
String str = this.b;
String str2 = this.e;
int i = this.c;
StringBuilder sb = new StringBuilder("BankingServiceTilesRequest(tilesVersion=");
sb.append(str);
sb.append(", userMode=");
sb.append(str2);
sb.append(", allTilesFlag=");
sb.append(i);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.b.hashCode() * 31) + this.e.hashCode()) * 31) + Integer.hashCode(this.c);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ZWw)) {
return false;
}
ZWw zWw = (ZWw) obj;
return C14957gcv.b((Object) this.b, (Object) zWw.b) && C14957gcv.b((Object) this.e, (Object) zWw.e) && this.c == zWw.c;
}
}