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 TLw {
|
||
|
|
||
|
@SerializedName("code")
|
||
|
public String b;
|
||
|
|
||
|
@SerializedName("countryTH")
|
||
|
public String c;
|
||
|
|
||
|
@SerializedName("countryEN")
|
||
|
public String e;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
String str2 = this.e;
|
||
|
String str3 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("CountryEntity(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.b.hashCode() * 31) + this.e.hashCode()) * 31) + this.c.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof TLw)) {
|
||
|
return false;
|
||
|
}
|
||
|
TLw tLw = (TLw) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) tLw.b) && C14957gcv.b((Object) this.e, (Object) tLw.e) && C14957gcv.b((Object) this.c, (Object) tLw.c);
|
||
|
}
|
||
|
}
|