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

67 lines
1.9 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class DPM {
@SerializedName("willingMonthlyPayment")
private final String a;
@SerializedName("productType")
private final List<String> b;
@SerializedName("monthlyIncome")
private final String c;
@SerializedName("ncbAcceptedFlag")
private final String d;
public DPM(String str, String str2, List<String> list, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(list, "");
this.c = str;
this.a = str2;
this.b = list;
this.d = str3;
}
public final String toString() {
String str = this.c;
String str2 = this.a;
List<String> list = this.b;
String str3 = this.d;
StringBuilder sb = new StringBuilder("CreditPowerNCBInquiryRequest(monthlyIncome=");
sb.append(str);
sb.append(", willingMonthlyPayment=");
sb.append(str2);
sb.append(", productType=");
sb.append(list);
sb.append(", ncbAcceptedFlag=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
int hashCode3 = this.b.hashCode();
String str2 = this.d;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof DPM)) {
return false;
}
DPM dpm = (DPM) obj;
return C14957gcv.b((Object) this.c, (Object) dpm.c) && C14957gcv.b((Object) this.a, (Object) dpm.a) && C14957gcv.b(this.b, dpm.b) && C14957gcv.b((Object) this.d, (Object) dpm.d);
}
}