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

48 lines
1.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.Nay, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0724Nay {
@SerializedName("applicationUuid")
public final String a;
@SerializedName("customerContactInfo")
public final C17323vlw b;
@SerializedName("minIncome")
public final int d;
public final String toString() {
String str = this.a;
C17323vlw c17323vlw = this.b;
int i = this.d;
StringBuilder sb = new StringBuilder("NTBContactInfoDataEntity(applicationUuid=");
sb.append(str);
sb.append(", customerContactInfo=");
sb.append(c17323vlw);
sb.append(", minIncome=");
sb.append(i);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
return ((((str == null ? 0 : str.hashCode()) * 31) + this.b.hashCode()) * 31) + Integer.hashCode(this.d);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0724Nay)) {
return false;
}
C0724Nay c0724Nay = (C0724Nay) obj;
return C14957gcv.b((Object) this.a, (Object) c0724Nay.a) && C14957gcv.b(this.b, c0724Nay.b) && this.d == c0724Nay.d;
}
}