66 lines
1.9 KiB
Java
66 lines
1.9 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Sez {
|
|
|
|
@SerializedName("loanAmount")
|
|
public String a;
|
|
|
|
@SerializedName("maximumCreditLimit")
|
|
public String b;
|
|
|
|
@SerializedName("productType")
|
|
public String c;
|
|
|
|
@SerializedName("minimumCreditLimit")
|
|
public String e;
|
|
|
|
public Sez(String str, String str2, String str3, String str4) {
|
|
C14957gcv.e(str, "");
|
|
this.c = str;
|
|
this.e = str2;
|
|
this.b = str3;
|
|
this.a = str4;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
String str4 = this.a;
|
|
StringBuilder sb = new StringBuilder("ProductCalculationRequest(productType=");
|
|
sb.append(str);
|
|
sb.append(", minimumCreditLimit=");
|
|
sb.append(str2);
|
|
sb.append(", maximumCreditLimit=");
|
|
sb.append(str3);
|
|
sb.append(", loanAmount=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.c.hashCode();
|
|
String str = this.e;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
int hashCode3 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.a;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Sez)) {
|
|
return false;
|
|
}
|
|
Sez sez = (Sez) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) sez.c) && C14957gcv.b((Object) this.e, (Object) sez.e) && C14957gcv.b((Object) this.b, (Object) sez.b) && C14957gcv.b((Object) this.a, (Object) sez.a);
|
|
}
|
|
}
|