93 lines
2.9 KiB
Java
93 lines
2.9 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.ft, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C14430ft {
|
|
|
|
@SerializedName("maxAllowedTenor")
|
|
private final Integer a;
|
|
|
|
@SerializedName("billAmount")
|
|
private final double b;
|
|
|
|
@SerializedName("paymentServiceType")
|
|
private final String c;
|
|
|
|
@SerializedName("billerID")
|
|
private final String d;
|
|
|
|
@SerializedName("billerCategoryCode")
|
|
private final String e;
|
|
|
|
@SerializedName("prodPackageId")
|
|
private final String h;
|
|
|
|
@SerializedName("tenorSelected")
|
|
private final Integer i;
|
|
|
|
public C14430ft(String str, String str2, String str3, double d, String str4, Integer num) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
this.c = str;
|
|
this.d = str2;
|
|
this.e = str3;
|
|
this.b = d;
|
|
this.h = str4;
|
|
this.a = num;
|
|
this.i = null;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.d;
|
|
String str3 = this.e;
|
|
double d = this.b;
|
|
String str4 = this.h;
|
|
Integer num = this.a;
|
|
Integer num2 = this.i;
|
|
StringBuilder sb = new StringBuilder("BillPaymentLoanSchemaRequest(paymentServiceType=");
|
|
sb.append(str);
|
|
sb.append(", billerID=");
|
|
sb.append(str2);
|
|
sb.append(", billerCategoryCode=");
|
|
sb.append(str3);
|
|
sb.append(", billAmount=");
|
|
sb.append(d);
|
|
sb.append(", prodPackageId=");
|
|
sb.append(str4);
|
|
sb.append(", maxAllowedTenor=");
|
|
sb.append(num);
|
|
sb.append(", tenorSelected=");
|
|
sb.append(num2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.c.hashCode();
|
|
int hashCode2 = this.d.hashCode();
|
|
int hashCode3 = this.e.hashCode();
|
|
int hashCode4 = Double.hashCode(this.b);
|
|
int hashCode5 = this.h.hashCode();
|
|
Integer num = this.a;
|
|
int hashCode6 = num == null ? 0 : num.hashCode();
|
|
Integer num2 = this.i;
|
|
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (num2 != null ? num2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C14430ft)) {
|
|
return false;
|
|
}
|
|
C14430ft c14430ft = (C14430ft) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) c14430ft.c) && C14957gcv.b((Object) this.d, (Object) c14430ft.d) && C14957gcv.b((Object) this.e, (Object) c14430ft.e) && Double.compare(this.b, c14430ft.b) == 0 && C14957gcv.b((Object) this.h, (Object) c14430ft.h) && C14957gcv.b(this.a, c14430ft.a) && C14957gcv.b(this.i, c14430ft.i);
|
|
}
|
|
}
|