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

80 lines
2.4 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import com.huawei.hms.support.feature.result.CommonConstant;
/* loaded from: classes3.dex */
public final class OHK {
@SerializedName("branch")
public final FeA a;
@SerializedName("clientNo")
public final String b;
@SerializedName("skipValidate")
public final Boolean c;
@SerializedName("clientNoMask")
public final String d;
@SerializedName("sortSequence")
public final int e;
@SerializedName(CommonConstant.KEY_STATUS)
public final FeA g;
@SerializedName("type")
private final FeA j;
public final String toString() {
int i = this.e;
String str = this.b;
Boolean bool = this.c;
FeA feA = this.g;
FeA feA2 = this.j;
FeA feA3 = this.a;
String str2 = this.d;
StringBuilder sb = new StringBuilder("UnregisteredClientEntity(sortSequence=");
sb.append(i);
sb.append(", clientNo=");
sb.append(str);
sb.append(", skipValidate=");
sb.append(bool);
sb.append(", status=");
sb.append(feA);
sb.append(", type=");
sb.append(feA2);
sb.append(", branch=");
sb.append(feA3);
sb.append(", clientNoMask=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.e);
int hashCode2 = this.b.hashCode();
Boolean bool = this.c;
int hashCode3 = bool == null ? 0 : bool.hashCode();
FeA feA = this.g;
int hashCode4 = feA == null ? 0 : feA.hashCode();
int hashCode5 = this.j.hashCode();
int hashCode6 = this.a.hashCode();
String str = this.d;
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (str != null ? str.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof OHK)) {
return false;
}
OHK ohk = (OHK) obj;
return this.e == ohk.e && C14957gcv.b((Object) this.b, (Object) ohk.b) && C14957gcv.b(this.c, ohk.c) && C14957gcv.b(this.g, ohk.g) && C14957gcv.b(this.j, ohk.j) && C14957gcv.b(this.a, ohk.a) && C14957gcv.b((Object) this.d, (Object) ohk.d);
}
}