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

44 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;
/* loaded from: classes3.dex */
public final class Ixa {
@SerializedName("transfer")
public final List<UOS> b;
@SerializedName("fieldFlag")
public final String e;
public final String toString() {
String str = this.e;
List<UOS> list = this.b;
StringBuilder sb = new StringBuilder("AccountTransferMethodEntity(fieldFlag=");
sb.append(str);
sb.append(", transfer=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
List<UOS> list = this.b;
return (hashCode * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Ixa)) {
return false;
}
Ixa ixa = (Ixa) obj;
return C14957gcv.b((Object) this.e, (Object) ixa.e) && C14957gcv.b(this.b, ixa.b);
}
}