83 lines
2.7 KiB
Java
83 lines
2.7 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Sek {
|
||
|
|
||
|
@SerializedName("creditAmount")
|
||
|
private final String a;
|
||
|
|
||
|
@SerializedName("applicationId")
|
||
|
private final String b;
|
||
|
|
||
|
@SerializedName("interestRate")
|
||
|
private final String c;
|
||
|
|
||
|
@SerializedName("duration")
|
||
|
private final String d;
|
||
|
|
||
|
@SerializedName("monthlyPayment")
|
||
|
private final String e;
|
||
|
|
||
|
@SerializedName("productType")
|
||
|
private final String f;
|
||
|
|
||
|
@SerializedName("ncbTransactionId")
|
||
|
private final String j;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.f;
|
||
|
String str2 = this.b;
|
||
|
String str3 = this.j;
|
||
|
String str4 = this.a;
|
||
|
String str5 = this.e;
|
||
|
String str6 = this.c;
|
||
|
String str7 = this.d;
|
||
|
StringBuilder sb = new StringBuilder("EasycashCreditPowerProduct(productType=");
|
||
|
sb.append(str);
|
||
|
sb.append(", applicationId=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", ncbTransactionId=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", creditAmount=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", monthlyPayment=");
|
||
|
sb.append(str5);
|
||
|
sb.append(", interestRate=");
|
||
|
sb.append(str6);
|
||
|
sb.append(", duration=");
|
||
|
sb.append(str7);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.f;
|
||
|
int hashCode = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.b;
|
||
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
||
|
String str3 = this.j;
|
||
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
||
|
String str4 = this.a;
|
||
|
int hashCode4 = str4 == null ? 0 : str4.hashCode();
|
||
|
String str5 = this.e;
|
||
|
int hashCode5 = str5 == null ? 0 : str5.hashCode();
|
||
|
String str6 = this.c;
|
||
|
int hashCode6 = str6 == null ? 0 : str6.hashCode();
|
||
|
String str7 = this.d;
|
||
|
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (str7 != null ? str7.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Sek)) {
|
||
|
return false;
|
||
|
}
|
||
|
Sek sek = (Sek) obj;
|
||
|
return C14957gcv.b((Object) this.f, (Object) sek.f) && C14957gcv.b((Object) this.b, (Object) sek.b) && C14957gcv.b((Object) this.j, (Object) sek.j) && C14957gcv.b((Object) this.a, (Object) sek.a) && C14957gcv.b((Object) this.e, (Object) sek.e) && C14957gcv.b((Object) this.c, (Object) sek.c) && C14957gcv.b((Object) this.d, (Object) sek.d);
|
||
|
}
|
||
|
}
|