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 c; @SerializedName("endOfListFlag") public final boolean d; public final String toString() { List 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; } }