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

62 lines
1.5 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class zpB {
@SerializedName("isRegis")
private boolean b;
@SerializedName("tilesVersion")
private String c;
@SerializedName("deviceId")
private final String e;
public zpB(String str, String str2, boolean z) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.e = str;
this.c = str2;
this.b = z;
}
public final String toString() {
String str = this.e;
String str2 = this.c;
boolean z = this.b;
StringBuilder sb = new StringBuilder("DeleteMultiDeviceRequest(deviceId=");
sb.append(str);
sb.append(", tilesVersion=");
sb.append(str2);
sb.append(", isRegis=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.e.hashCode();
int hashCode2 = this.c.hashCode();
boolean z = this.b;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + hashCode2) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof zpB)) {
return false;
}
zpB zpb = (zpB) obj;
return C14957gcv.b((Object) this.e, (Object) zpb.e) && C14957gcv.b((Object) this.c, (Object) zpb.c) && this.b == zpb.b;
}
}