what-the-bank/sources/o/C0279DJg.java

85 lines
2.7 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* renamed from: o.DJg, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0279DJg {
@SerializedName("tilesVersion")
private final String a;
@SerializedName("cardRef")
private final String b;
@SerializedName("loanId")
private final String c;
@SerializedName("term")
private final String d;
@SerializedName("rate")
private final String e;
@SerializedName("transactionInstallments")
private final List<C17352vyp> h;
public C0279DJg(String str, String str2, String str3, String str4, List<C17352vyp> list, String str5) {
C14957gcv.e(str, "");
C14957gcv.e(str5, "");
this.b = str;
this.e = str2;
this.d = str3;
this.c = str4;
this.h = list;
this.a = str5;
}
public final String toString() {
String str = this.b;
String str2 = this.e;
String str3 = this.d;
String str4 = this.c;
List<C17352vyp> list = this.h;
String str5 = this.a;
StringBuilder sb = new StringBuilder("DeejungInstallmentsTokenRequest(cardRef=");
sb.append(str);
sb.append(", rate=");
sb.append(str2);
sb.append(", term=");
sb.append(str3);
sb.append(", loanId=");
sb.append(str4);
sb.append(", transactionInstallments=");
sb.append(list);
sb.append(", tilesVersion=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.b.hashCode();
String str = this.e;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.d;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.c;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
List<C17352vyp> list = this.h;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (list != null ? list.hashCode() : 0)) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0279DJg)) {
return false;
}
C0279DJg c0279DJg = (C0279DJg) obj;
return C14957gcv.b((Object) this.b, (Object) c0279DJg.b) && C14957gcv.b((Object) this.e, (Object) c0279DJg.e) && C14957gcv.b((Object) this.d, (Object) c0279DJg.d) && C14957gcv.b((Object) this.c, (Object) c0279DJg.c) && C14957gcv.b(this.h, c0279DJg.h) && C14957gcv.b((Object) this.a, (Object) c0279DJg.a);
}
}