47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class jVk {
|
||
|
|
||
|
@SerializedName("applicationUuid")
|
||
|
private final String b;
|
||
|
|
||
|
@SerializedName("email")
|
||
|
private final String c;
|
||
|
|
||
|
public jVk(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.b = str;
|
||
|
this.c = str2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
String str2 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("HmlVerifyRequest(applicationUuid=");
|
||
|
sb.append(str);
|
||
|
sb.append(", email=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.b.hashCode() * 31) + this.c.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof jVk)) {
|
||
|
return false;
|
||
|
}
|
||
|
jVk jvk = (jVk) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) jvk.b) && C14957gcv.b((Object) this.c, (Object) jvk.c);
|
||
|
}
|
||
|
}
|