69 lines
2.1 KiB
Java
69 lines
2.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Dly {
|
|
|
|
@SerializedName("minIncome")
|
|
public final int a;
|
|
|
|
@SerializedName("applicationStatus")
|
|
public final String b;
|
|
|
|
@SerializedName("productType")
|
|
public final String c;
|
|
|
|
@SerializedName("customerContactInfo")
|
|
public final ZUQ d;
|
|
|
|
@SerializedName("applicationUuid")
|
|
public final String e;
|
|
|
|
@SerializedName("requireThaiName")
|
|
public final String f;
|
|
|
|
public final String toString() {
|
|
String str = this.f;
|
|
ZUQ zuq = this.d;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
String str4 = this.c;
|
|
int i = this.a;
|
|
StringBuilder sb = new StringBuilder("CustomerContactInfoEntity(requireThaiName=");
|
|
sb.append(str);
|
|
sb.append(", customerContactInfo=");
|
|
sb.append(zuq);
|
|
sb.append(", applicationUuid=");
|
|
sb.append(str2);
|
|
sb.append(", applicationStatus=");
|
|
sb.append(str3);
|
|
sb.append(", productType=");
|
|
sb.append(str4);
|
|
sb.append(", minIncome=");
|
|
sb.append(i);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.f.hashCode();
|
|
int hashCode2 = this.d.hashCode();
|
|
String str = this.e;
|
|
int hashCode3 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str2 != null ? str2.hashCode() : 0)) * 31) + this.c.hashCode()) * 31) + Integer.hashCode(this.a);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Dly)) {
|
|
return false;
|
|
}
|
|
Dly dly = (Dly) obj;
|
|
return C14957gcv.b((Object) this.f, (Object) dly.f) && C14957gcv.b(this.d, dly.d) && C14957gcv.b((Object) this.e, (Object) dly.e) && C14957gcv.b((Object) this.b, (Object) dly.b) && C14957gcv.b((Object) this.c, (Object) dly.c) && this.a == dly.a;
|
|
}
|
|
}
|