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

49 lines
1.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class KJM {
public final List<Fip> b;
public final boolean c;
public KJM(List<Fip> list, boolean z) {
C14957gcv.e(list, "");
this.b = list;
this.c = z;
}
public final String toString() {
List<Fip> list = this.b;
boolean z = this.c;
StringBuilder sb = new StringBuilder("EkycStatusInquiry(itemLists=");
sb.append(list);
sb.append(", endOfListFlag=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.b.hashCode();
boolean z = this.c;
int i = z;
if (z != 0) {
i = 1;
}
return (hashCode * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof KJM)) {
return false;
}
KJM kjm = (KJM) obj;
return C14957gcv.b(this.b, kjm.b) && this.c == kjm.c;
}
}