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

134 lines
4.1 KiB
Java

package o;
import com.google.android.gms.measurement.api.AppMeasurementSdk;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
import java.util.List;
/* loaded from: classes.dex */
public final class KDt {
@SerializedName("label")
public String a;
@SerializedName("image")
public String b;
@SerializedName("description")
public List<String> c;
@SerializedName("hasSeparator")
public boolean d;
@SerializedName("isHiddenInSlip")
public boolean e;
@SerializedName("paddingTop")
public String f;
@SerializedName(AppMeasurementSdk.ConditionalUserProperty.VALUE)
public String g;
@SerializedName("paddingBottom")
public String h;
@SerializedName("type")
public String i;
@SerializedName("qrString")
public String j;
private KDt(String str, String str2, String str3, String str4, String str5, List<String> list, String str6, String str7) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
C14957gcv.e(str5, "");
C14957gcv.e(list, "");
C14957gcv.e(str6, "");
C14957gcv.e(str7, "");
this.d = false;
this.f = str;
this.h = str2;
this.i = str3;
this.a = str4;
this.g = str5;
this.c = list;
this.b = str6;
this.j = str7;
this.e = false;
}
public KDt() {
this("", "", "", "", "", new ArrayList(), "", "");
}
public final String toString() {
boolean z = this.d;
String str = this.f;
String str2 = this.h;
String str3 = this.i;
String str4 = this.a;
String str5 = this.g;
List<String> list = this.c;
String str6 = this.b;
String str7 = this.j;
boolean z2 = this.e;
StringBuilder sb = new StringBuilder("ThirdPartyBodyEntity(isSeparatorVisible=");
sb.append(z);
sb.append(", paddingTop=");
sb.append(str);
sb.append(", paddingBottom=");
sb.append(str2);
sb.append(", type=");
sb.append(str3);
sb.append(", label=");
sb.append(str4);
sb.append(", value=");
sb.append(str5);
sb.append(", descriptions=");
sb.append(list);
sb.append(", image=");
sb.append(str6);
sb.append(", qrString=");
sb.append(str7);
sb.append(", isHiddenInSlip=");
sb.append(z2);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v20 */
/* JADX WARN: Type inference failed for: r0v21 */
public final int hashCode() {
boolean z = this.d;
?? r0 = z;
if (z) {
r0 = 1;
}
int hashCode = this.f.hashCode();
int hashCode2 = this.h.hashCode();
int hashCode3 = this.i.hashCode();
int hashCode4 = this.a.hashCode();
int hashCode5 = this.g.hashCode();
int hashCode6 = this.c.hashCode();
int hashCode7 = this.b.hashCode();
int hashCode8 = this.j.hashCode();
boolean z2 = this.e;
return (((((((((((((((((r0 * 31) + hashCode) * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (z2 ? 1 : z2 ? 1 : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof KDt)) {
return false;
}
KDt kDt = (KDt) obj;
return this.d == kDt.d && C14957gcv.b((Object) this.f, (Object) kDt.f) && C14957gcv.b((Object) this.h, (Object) kDt.h) && C14957gcv.b((Object) this.i, (Object) kDt.i) && C14957gcv.b((Object) this.a, (Object) kDt.a) && C14957gcv.b((Object) this.g, (Object) kDt.g) && C14957gcv.b(this.c, kDt.c) && C14957gcv.b((Object) this.b, (Object) kDt.b) && C14957gcv.b((Object) this.j, (Object) kDt.j) && this.e == kDt.e;
}
}