46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class cHC {
|
|
|
|
@SerializedName("code")
|
|
public String a;
|
|
|
|
@SerializedName("countryTH")
|
|
public String b;
|
|
|
|
@SerializedName("countryEN")
|
|
public String c;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.c;
|
|
String str3 = this.b;
|
|
StringBuilder sb = new StringBuilder("CountryItemEntity(code=");
|
|
sb.append(str);
|
|
sb.append(", countryEN=");
|
|
sb.append(str2);
|
|
sb.append(", countryTH=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.a.hashCode() * 31) + this.c.hashCode()) * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof cHC)) {
|
|
return false;
|
|
}
|
|
cHC chc = (cHC) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) chc.a) && C14957gcv.b((Object) this.c, (Object) chc.c) && C14957gcv.b((Object) this.b, (Object) chc.b);
|
|
}
|
|
}
|