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

42 lines
1.1 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import org.bouncycastle.i18n.MessageBundle;
/* loaded from: classes3.dex */
public final class UaP {
@SerializedName(MessageBundle.TITLE_ENTRY)
public final String d;
@SerializedName("debitCardsBenefitList")
public final List<Eqg> e;
public final String toString() {
String str = this.d;
List<Eqg> list = this.e;
StringBuilder sb = new StringBuilder("DebitCardsBenefitInfoEntity(title=");
sb.append(str);
sb.append(", benefitListEntity=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.d.hashCode() * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UaP)) {
return false;
}
UaP uaP = (UaP) obj;
return C14957gcv.b((Object) this.d, (Object) uaP.d) && C14957gcv.b(this.e, uaP.e);
}
}