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

73 lines
2.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.fu, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C14483fu {
@SerializedName("loanAmtTotal")
private final double a;
@SerializedName("totalPeriods")
private final long b;
@SerializedName("prodPackageId")
private final String c;
@SerializedName("effectiveInterestRate")
private final double d;
@SerializedName("coinsValue")
private final Double e;
public C14483fu(long j, String str, double d, double d2, Double d3) {
C14957gcv.e(str, "");
this.b = j;
this.c = str;
this.d = d;
this.a = d2;
this.e = d3;
}
public final String toString() {
long j = this.b;
String str = this.c;
double d = this.d;
double d2 = this.a;
Double d3 = this.e;
StringBuilder sb = new StringBuilder("BillPaymentLoanInstallmentReviewRequest(totalPeriods=");
sb.append(j);
sb.append(", prodPackageId=");
sb.append(str);
sb.append(", effectiveInterestRate=");
sb.append(d);
sb.append(", loanAmtTotal=");
sb.append(d2);
sb.append(", coinsValue=");
sb.append(d3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Long.hashCode(this.b);
int hashCode2 = this.c.hashCode();
int hashCode3 = Double.hashCode(this.d);
int hashCode4 = Double.hashCode(this.a);
Double d = this.e;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (d == null ? 0 : d.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C14483fu)) {
return false;
}
C14483fu c14483fu = (C14483fu) obj;
return this.b == c14483fu.b && C14957gcv.b((Object) this.c, (Object) c14483fu.c) && Double.compare(this.d, c14483fu.d) == 0 && Double.compare(this.a, c14483fu.a) == 0 && C14957gcv.b(this.e, c14483fu.e);
}
}