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

48 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class sZJ {
@SerializedName("openFlag")
public final String b;
@SerializedName("accountType")
public final String e;
public sZJ(String str, String str2) {
C14957gcv.e(str, "");
this.b = str;
this.e = str2;
}
public final String toString() {
String str = this.b;
String str2 = this.e;
StringBuilder sb = new StringBuilder("DepositSelectAccountRequest(openFlag=");
sb.append(str);
sb.append(", accountType=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.b.hashCode();
String str = this.e;
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof sZJ)) {
return false;
}
sZJ szj = (sZJ) obj;
return C14957gcv.b((Object) this.b, (Object) szj.b) && C14957gcv.b((Object) this.e, (Object) szj.e);
}
}