44 lines
892 B
Java
44 lines
892 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class R {
|
|
|
|
@SerializedName("mobileNumber")
|
|
private String a;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS {
|
|
public String a;
|
|
}
|
|
|
|
private R(IeS ieS) {
|
|
this.a = ieS.a;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
String str = this.a;
|
|
String str2 = ((R) obj).a;
|
|
return str != null ? str.equals(str2) : str2 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.a;
|
|
if (str != null) {
|
|
return str.hashCode();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
public /* synthetic */ R(IeS ieS, byte b) {
|
|
this(ieS);
|
|
}
|
|
}
|