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

111 lines
3.5 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class Xfm {
@SerializedName("tag")
public String a;
@SerializedName("dtag")
public String b;
@SerializedName("brand")
private final String c;
@SerializedName("mobileNo")
public String d;
@SerializedName("jailbreak")
private final String e;
@SerializedName("tcAccept")
private final C11264ec g;
@SerializedName("tilesVersion")
private final String h;
@SerializedName("os")
private final String i;
@SerializedName("model")
private final String j;
public Xfm(String str, String str2, String str3, String str4, String str5, String str6, C11264ec c11264ec, String str7, String str8) {
C14957gcv.e(str2, "");
this.b = str;
this.d = str2;
this.c = str3;
this.j = str4;
this.i = str5;
this.e = str6;
this.g = c11264ec;
this.h = str7;
this.a = str8;
}
public final String toString() {
String str = this.b;
String str2 = this.d;
String str3 = this.c;
String str4 = this.j;
String str5 = this.i;
String str6 = this.e;
C11264ec c11264ec = this.g;
String str7 = this.h;
String str8 = this.a;
StringBuilder sb = new StringBuilder("RegisterDeviceRequest(dTag=");
sb.append(str);
sb.append(", mobileNo=");
sb.append(str2);
sb.append(", brand=");
sb.append(str3);
sb.append(", model=");
sb.append(str4);
sb.append(", os=");
sb.append(str5);
sb.append(", jailbreak=");
sb.append(str6);
sb.append(", tcAccept=");
sb.append(c11264ec);
sb.append(", tilesVersion=");
sb.append(str7);
sb.append(", tag=");
sb.append(str8);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
int hashCode = str == null ? 0 : str.hashCode();
int hashCode2 = this.d.hashCode();
String str2 = this.c;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.j;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.i;
int hashCode5 = str4 == null ? 0 : str4.hashCode();
String str5 = this.e;
int hashCode6 = str5 == null ? 0 : str5.hashCode();
C11264ec c11264ec = this.g;
int hashCode7 = c11264ec == null ? 0 : c11264ec.hashCode();
String str6 = this.h;
int hashCode8 = str6 == null ? 0 : str6.hashCode();
String str7 = this.a;
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (str7 != null ? str7.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Xfm)) {
return false;
}
Xfm xfm = (Xfm) obj;
return C14957gcv.b((Object) this.b, (Object) xfm.b) && C14957gcv.b((Object) this.d, (Object) xfm.d) && C14957gcv.b((Object) this.c, (Object) xfm.c) && C14957gcv.b((Object) this.j, (Object) xfm.j) && C14957gcv.b((Object) this.i, (Object) xfm.i) && C14957gcv.b((Object) this.e, (Object) xfm.e) && C14957gcv.b(this.g, xfm.g) && C14957gcv.b((Object) this.h, (Object) xfm.h) && C14957gcv.b((Object) this.a, (Object) xfm.a);
}
}