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

84 lines
2.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class jNW {
@SerializedName("monthlyInstallmentAmount")
public final double a;
@SerializedName("ippType")
public final int b;
@SerializedName("productCode")
public final String c;
@SerializedName("cardInterestAmount")
public final double d;
@SerializedName("cardInterestRate")
public final double e;
@SerializedName("totalAmount")
public final double h;
@SerializedName("tenure")
public final int i;
@SerializedName("yearlyCardInterestRate")
public final double j;
public final String toString() {
int i = this.b;
int i2 = this.i;
double d = this.e;
double d2 = this.d;
double d3 = this.a;
double d4 = this.j;
double d5 = this.h;
String str = this.c;
StringBuilder sb = new StringBuilder("InstallmentPlansEntity(ippType=");
sb.append(i);
sb.append(", tenure=");
sb.append(i2);
sb.append(", cardInterestRate=");
sb.append(d);
sb.append(", cardInterestAmount=");
sb.append(d2);
sb.append(", monthlyInstallmentAmount=");
sb.append(d3);
sb.append(", yearlyCardInterestRate=");
sb.append(d4);
sb.append(", totalAmount=");
sb.append(d5);
sb.append(", productCode=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.b);
int hashCode2 = Integer.hashCode(this.i);
int hashCode3 = Double.hashCode(this.e);
int hashCode4 = Double.hashCode(this.d);
int hashCode5 = Double.hashCode(this.a);
int hashCode6 = Double.hashCode(this.j);
int hashCode7 = Double.hashCode(this.h);
String str = this.c;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof jNW)) {
return false;
}
jNW jnw = (jNW) obj;
return this.b == jnw.b && this.i == jnw.i && Double.compare(this.e, jnw.e) == 0 && Double.compare(this.d, jnw.d) == 0 && Double.compare(this.a, jnw.a) == 0 && Double.compare(this.j, jnw.j) == 0 && Double.compare(this.h, jnw.h) == 0 && C14957gcv.b((Object) this.c, (Object) jnw.c);
}
}