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

56 lines
1.4 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import org.simpleframework.xml.strategy.Name;
/* loaded from: classes3.dex */
public final class EBC {
@SerializedName("bankCode")
private final String b;
@SerializedName(Name.MARK)
private final String c;
@SerializedName("accountNo")
private final String d;
public EBC(String str, String str2, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.c = str;
this.b = str2;
this.d = str3;
}
public final String toString() {
String str = this.c;
String str2 = this.b;
String str3 = this.d;
StringBuilder sb = new StringBuilder("HmlEditAccountInfo(id=");
sb.append(str);
sb.append(", bankCode=");
sb.append(str2);
sb.append(", accountNo=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.c.hashCode() * 31) + this.b.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof EBC)) {
return false;
}
EBC ebc = (EBC) obj;
return C14957gcv.b((Object) this.c, (Object) ebc.c) && C14957gcv.b((Object) this.b, (Object) ebc.b) && C14957gcv.b((Object) this.d, (Object) ebc.d);
}
}