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

92 lines
2.9 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
import java.util.Set;
/* loaded from: classes3.dex */
public final class dRS {
public final String a;
public final Integer b;
public final boolean c;
public final Integer d;
public final Iiy e;
public final int f;
public final Set<Hzp> g;
public final List<Vkb> i;
/* JADX WARN: Multi-variable type inference failed */
public dRS(String str, Integer num, Integer num2, int i, List<Vkb> list, Iiy iiy, Set<? extends Hzp> set, boolean z) {
C14957gcv.e(list, "");
C14957gcv.e(iiy, "");
C14957gcv.e(set, "");
this.a = str;
this.b = num;
this.d = num2;
this.f = i;
this.i = list;
this.e = iiy;
this.g = set;
this.c = z;
}
public final String toString() {
String str = this.a;
Integer num = this.b;
Integer num2 = this.d;
int i = this.f;
List<Vkb> list = this.i;
Iiy iiy = this.e;
Set<Hzp> set = this.g;
boolean z = this.c;
StringBuilder sb = new StringBuilder("HmlDocumentsType(resubmitReasonDesc=");
sb.append(str);
sb.append(", minQuantity=");
sb.append(num);
sb.append(", maxQuantity=");
sb.append(num2);
sb.append(", totalUploadedQuantity=");
sb.append(i);
sb.append(", uploads=");
sb.append(list);
sb.append(", cameraType=");
sb.append(iiy);
sb.append(", uploadMethods=");
sb.append(set);
sb.append(", showGuidelines=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
Integer num = this.b;
int hashCode2 = num == null ? 0 : num.hashCode();
Integer num2 = this.d;
int hashCode3 = num2 != null ? num2.hashCode() : 0;
int hashCode4 = Integer.hashCode(this.f);
int hashCode5 = this.i.hashCode();
int hashCode6 = this.e.hashCode();
int hashCode7 = this.g.hashCode();
boolean z = this.c;
int i = z;
if (z != 0) {
i = 1;
}
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof dRS)) {
return false;
}
dRS drs = (dRS) obj;
return C14957gcv.b((Object) this.a, (Object) drs.a) && C14957gcv.b(this.b, drs.b) && C14957gcv.b(this.d, drs.d) && this.f == drs.f && C14957gcv.b(this.i, drs.i) && this.e == drs.e && C14957gcv.b(this.g, drs.g) && this.c == drs.c;
}
}