67 lines
2.0 KiB
Java
67 lines
2.0 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JAX {
|
|
|
|
@SerializedName("accountName")
|
|
public final String a;
|
|
|
|
@SerializedName("isRegistered")
|
|
public final String b;
|
|
|
|
@SerializedName("accountNo")
|
|
public final String c;
|
|
|
|
@SerializedName("accountBranch")
|
|
public final String d;
|
|
|
|
@SerializedName("nickname")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
String str4 = this.d;
|
|
String str5 = this.a;
|
|
StringBuilder sb = new StringBuilder("SingleFormOmnibusDepositEntity(accountNo=");
|
|
sb.append(str);
|
|
sb.append(", nickname=");
|
|
sb.append(str2);
|
|
sb.append(", isRegistered=");
|
|
sb.append(str3);
|
|
sb.append(", accountBranch=");
|
|
sb.append(str4);
|
|
sb.append(", accountName=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.b;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.d;
|
|
int hashCode4 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.a;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str5 != null ? str5.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof JAX)) {
|
|
return false;
|
|
}
|
|
JAX jax = (JAX) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) jax.c) && C14957gcv.b((Object) this.e, (Object) jax.e) && C14957gcv.b((Object) this.b, (Object) jax.b) && C14957gcv.b((Object) this.d, (Object) jax.d) && C14957gcv.b((Object) this.a, (Object) jax.a);
|
|
}
|
|
}
|