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

48 lines
1.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class TRd {
@SerializedName("itemLists")
public final List<C16749qsX> c;
@SerializedName("endOfListFlag")
public final boolean d;
public final String toString() {
List<C16749qsX> list = this.c;
boolean z = this.d;
StringBuilder sb = new StringBuilder("EkycStatusInquiryEntity(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.c.hashCode();
boolean z = this.d;
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 TRd)) {
return false;
}
TRd tRd = (TRd) obj;
return C14957gcv.b(this.c, tRd.c) && this.d == tRd.d;
}
}