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

53 lines
1.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import com.huawei.hms.support.feature.result.CommonConstant;
/* loaded from: classes3.dex */
public final class ovD {
@SerializedName("countryName")
public final String a;
@SerializedName(CommonConstant.KEY_COUNTRY_CODE)
public final String b;
public /* synthetic */ ovD(String str) {
this(str, (byte) 0);
}
private ovD(String str, byte b) {
this.b = str;
this.a = null;
}
public final String toString() {
String str = this.b;
String str2 = this.a;
StringBuilder sb = new StringBuilder("SourceOfIncomeEntity(countryCode=");
sb.append(str);
sb.append(", countryName=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.a;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ovD)) {
return false;
}
ovD ovd = (ovD) obj;
return C14957gcv.b((Object) this.b, (Object) ovd.b) && C14957gcv.b((Object) this.a, (Object) ovd.a);
}
}