58 lines
1.7 KiB
Java
58 lines
1.7 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class TVn {
|
||
|
|
||
|
@SerializedName("frontEndFee")
|
||
|
private final String a;
|
||
|
|
||
|
@SerializedName("interestRatePenalty")
|
||
|
private final String b;
|
||
|
|
||
|
@SerializedName("spread")
|
||
|
private final String c;
|
||
|
|
||
|
@SerializedName("interestRateCeiling")
|
||
|
private final String d;
|
||
|
|
||
|
@SerializedName("factor")
|
||
|
private final String e;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.b;
|
||
|
String str3 = this.e;
|
||
|
String str4 = this.c;
|
||
|
String str5 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("CommercialLoanCalculationEntity(interestRateCeiling=");
|
||
|
sb.append(str);
|
||
|
sb.append(", interestRatePenalty=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", factor=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", spread=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", frontEndFee=");
|
||
|
sb.append(str5);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((((((this.d.hashCode() * 31) + this.b.hashCode()) * 31) + this.e.hashCode()) * 31) + this.c.hashCode()) * 31) + this.a.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof TVn)) {
|
||
|
return false;
|
||
|
}
|
||
|
TVn tVn = (TVn) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) tVn.d) && C14957gcv.b((Object) this.b, (Object) tVn.b) && C14957gcv.b((Object) this.e, (Object) tVn.e) && C14957gcv.b((Object) this.c, (Object) tVn.c) && C14957gcv.b((Object) this.a, (Object) tVn.a);
|
||
|
}
|
||
|
}
|