62 lines
1.6 KiB
Java
62 lines
1.6 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Bmg {
|
|
|
|
@SerializedName("laserCode")
|
|
private final String b;
|
|
|
|
@SerializedName("isFaceValidate")
|
|
private final boolean c;
|
|
|
|
@SerializedName("tilesVersion")
|
|
private final String e;
|
|
|
|
public Bmg(String str, String str2, boolean z) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.b = str;
|
|
this.e = str2;
|
|
this.c = z;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.e;
|
|
boolean z = this.c;
|
|
StringBuilder sb = new StringBuilder("IdentityRequest(laserCode=");
|
|
sb.append(str);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str2);
|
|
sb.append(", isFaceValidate=");
|
|
sb.append(z);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
int hashCode = this.b.hashCode();
|
|
int hashCode2 = this.e.hashCode();
|
|
boolean z = this.c;
|
|
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 Bmg)) {
|
|
return false;
|
|
}
|
|
Bmg bmg = (Bmg) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) bmg.b) && C14957gcv.b((Object) this.e, (Object) bmg.e) && this.c == bmg.c;
|
|
}
|
|
}
|