76 lines
2.5 KiB
Java
76 lines
2.5 KiB
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class NYU {
|
||
|
public final String a;
|
||
|
public final double b;
|
||
|
public final double c;
|
||
|
public final String d;
|
||
|
public final String e;
|
||
|
public final String f;
|
||
|
public final double h;
|
||
|
public final double i;
|
||
|
|
||
|
public NYU(String str, String str2, String str3, String str4, double d, double d2, double d3, double d4) {
|
||
|
this.d = str;
|
||
|
this.e = str2;
|
||
|
this.f = str3;
|
||
|
this.a = str4;
|
||
|
this.i = d;
|
||
|
this.c = d2;
|
||
|
this.h = d3;
|
||
|
this.b = d4;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.e;
|
||
|
String str3 = this.f;
|
||
|
String str4 = this.a;
|
||
|
double d = this.i;
|
||
|
double d2 = this.c;
|
||
|
double d3 = this.h;
|
||
|
double d4 = this.b;
|
||
|
StringBuilder sb = new StringBuilder("CashAdvanceInfoResponse(term=");
|
||
|
sb.append(str);
|
||
|
sb.append(", monthlyRate=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", yearlyRate=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", loanId=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", totalPrincipal=");
|
||
|
sb.append(d);
|
||
|
sb.append(", totalInterest=");
|
||
|
sb.append(d2);
|
||
|
sb.append(", totalPayment=");
|
||
|
sb.append(d3);
|
||
|
sb.append(", monthlyPayment=");
|
||
|
sb.append(d4);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.d;
|
||
|
int hashCode = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.e;
|
||
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
||
|
String str3 = this.f;
|
||
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
||
|
String str4 = this.a;
|
||
|
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0)) * 31) + Double.hashCode(this.i)) * 31) + Double.hashCode(this.c)) * 31) + Double.hashCode(this.h)) * 31) + Double.hashCode(this.b);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof NYU)) {
|
||
|
return false;
|
||
|
}
|
||
|
NYU nyu = (NYU) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) nyu.d) && C14957gcv.b((Object) this.e, (Object) nyu.e) && C14957gcv.b((Object) this.f, (Object) nyu.f) && C14957gcv.b((Object) this.a, (Object) nyu.a) && Double.compare(this.i, nyu.i) == 0 && Double.compare(this.c, nyu.c) == 0 && Double.compare(this.h, nyu.h) == 0 && Double.compare(this.b, nyu.b) == 0;
|
||
|
}
|
||
|
}
|