85 lines
2.7 KiB
Java
85 lines
2.7 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.iLo, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C15754iLo {
|
|
|
|
@SerializedName("maximumCreditLimit")
|
|
public String a;
|
|
|
|
@SerializedName("interestRate")
|
|
public String b;
|
|
|
|
@SerializedName("monthlyPayment")
|
|
public String c;
|
|
|
|
@SerializedName("loanAmount")
|
|
public String d;
|
|
|
|
@SerializedName("productType")
|
|
public String e;
|
|
|
|
@SerializedName("tenor")
|
|
public String h;
|
|
|
|
public C15754iLo(String str, String str2, String str3, String str4, String str5, String str6) {
|
|
this.e = str;
|
|
this.a = str2;
|
|
this.d = str3;
|
|
this.c = str4;
|
|
this.h = str5;
|
|
this.b = str6;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.a;
|
|
String str3 = this.d;
|
|
String str4 = this.c;
|
|
String str5 = this.h;
|
|
String str6 = this.b;
|
|
StringBuilder sb = new StringBuilder("ProductRequest(productType=");
|
|
sb.append(str);
|
|
sb.append(", maximumCreditLimit=");
|
|
sb.append(str2);
|
|
sb.append(", loanAmount=");
|
|
sb.append(str3);
|
|
sb.append(", monthlyPayment=");
|
|
sb.append(str4);
|
|
sb.append(", tenor=");
|
|
sb.append(str5);
|
|
sb.append(", interestRate=");
|
|
sb.append(str6);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.e;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.a;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.c;
|
|
int hashCode4 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.h;
|
|
int hashCode5 = str5 == null ? 0 : str5.hashCode();
|
|
String str6 = this.b;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str6 != null ? str6.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C15754iLo)) {
|
|
return false;
|
|
}
|
|
C15754iLo c15754iLo = (C15754iLo) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) c15754iLo.e) && C14957gcv.b((Object) this.a, (Object) c15754iLo.a) && C14957gcv.b((Object) this.d, (Object) c15754iLo.d) && C14957gcv.b((Object) this.c, (Object) c15754iLo.c) && C14957gcv.b((Object) this.h, (Object) c15754iLo.h) && C14957gcv.b((Object) this.b, (Object) c15754iLo.b);
|
|
}
|
|
}
|