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

40 lines
985 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class Gyx {
@SerializedName("en")
private final String c;
@SerializedName("th")
private final String e;
public final String toString() {
String str = this.c;
String str2 = this.e;
StringBuilder sb = new StringBuilder("MerchantTermsAndConditionsDataEntity(en=");
sb.append(str);
sb.append(", th=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.c.hashCode() * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Gyx)) {
return false;
}
Gyx gyx = (Gyx) obj;
return C14957gcv.b((Object) this.c, (Object) gyx.c) && C14957gcv.b((Object) this.e, (Object) gyx.e);
}
}