35 lines
789 B
Java
35 lines
789 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class UJh {
|
|
|
|
@SerializedName("citizenId")
|
|
private final String d;
|
|
|
|
public UJh(String str) {
|
|
C14957gcv.e(str, "");
|
|
this.d = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
StringBuilder sb = new StringBuilder("HmlValidateOtaRequest(citizenId=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof UJh) && C14957gcv.b((Object) this.d, (Object) ((UJh) obj).d);
|
|
}
|
|
}
|