51 lines
1.3 KiB
Java
51 lines
1.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class rTQ {
|
|
|
|
@SerializedName("totalInterest")
|
|
public final Double a;
|
|
|
|
@SerializedName("monthlyPayment")
|
|
public final Double b;
|
|
|
|
@SerializedName("totalPayment")
|
|
public final Double c;
|
|
|
|
public final String toString() {
|
|
Double d = this.c;
|
|
Double d2 = this.a;
|
|
Double d3 = this.b;
|
|
StringBuilder sb = new StringBuilder("InstPaymentInfoResponseEntity(totalPayment=");
|
|
sb.append(d);
|
|
sb.append(", totalInterest=");
|
|
sb.append(d2);
|
|
sb.append(", monthlyPayment=");
|
|
sb.append(d3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Double d = this.c;
|
|
int hashCode = d == null ? 0 : d.hashCode();
|
|
Double d2 = this.a;
|
|
int hashCode2 = d2 == null ? 0 : d2.hashCode();
|
|
Double d3 = this.b;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (d3 != null ? d3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof rTQ)) {
|
|
return false;
|
|
}
|
|
rTQ rtq = (rTQ) obj;
|
|
return C14957gcv.b(this.c, rtq.c) && C14957gcv.b(this.a, rtq.a) && C14957gcv.b(this.b, rtq.b);
|
|
}
|
|
}
|