67 lines
1.9 KiB
Java
67 lines
1.9 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class KRT {
|
|
|
|
@SerializedName("feeAndVat")
|
|
public final Double a;
|
|
|
|
@SerializedName("vatRate")
|
|
public final Double b;
|
|
|
|
@SerializedName("annualRate")
|
|
public final Double c;
|
|
|
|
@SerializedName("totalPrincipal")
|
|
public final Double d;
|
|
|
|
@SerializedName("feeRate")
|
|
public final Double e;
|
|
|
|
public final String toString() {
|
|
Double d = this.d;
|
|
Double d2 = this.c;
|
|
Double d3 = this.a;
|
|
Double d4 = this.e;
|
|
Double d5 = this.b;
|
|
StringBuilder sb = new StringBuilder("MinFullCalculationDetailsEntity(totalPrincipal=");
|
|
sb.append(d);
|
|
sb.append(", annualRate=");
|
|
sb.append(d2);
|
|
sb.append(", feeAndVat=");
|
|
sb.append(d3);
|
|
sb.append(", feeRate=");
|
|
sb.append(d4);
|
|
sb.append(", vatRate=");
|
|
sb.append(d5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Double d = this.d;
|
|
int hashCode = d == null ? 0 : d.hashCode();
|
|
Double d2 = this.c;
|
|
int hashCode2 = d2 == null ? 0 : d2.hashCode();
|
|
Double d3 = this.a;
|
|
int hashCode3 = d3 == null ? 0 : d3.hashCode();
|
|
Double d4 = this.e;
|
|
int hashCode4 = d4 == null ? 0 : d4.hashCode();
|
|
Double d5 = this.b;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (d5 != null ? d5.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof KRT)) {
|
|
return false;
|
|
}
|
|
KRT krt = (KRT) obj;
|
|
return C14957gcv.b(this.d, krt.d) && C14957gcv.b(this.c, krt.c) && C14957gcv.b(this.a, krt.a) && C14957gcv.b(this.e, krt.e) && C14957gcv.b(this.b, krt.b);
|
|
}
|
|
}
|