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

40 lines
969 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes.dex */
public final class dSU {
@SerializedName("th")
public String a;
@SerializedName("en")
public String b;
public final String toString() {
String str = this.a;
String str2 = this.b;
StringBuilder sb = new StringBuilder("BillPaymentBillersConfigResultValue(th=");
sb.append(str);
sb.append(", en=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.a.hashCode() * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof dSU)) {
return false;
}
dSU dsu = (dSU) obj;
return C14957gcv.b((Object) this.a, (Object) dsu.a) && C14957gcv.b((Object) this.b, (Object) dsu.b);
}
}