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

44 lines
1.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class ZRS {
@SerializedName("billers")
public final List<HUn> b;
@SerializedName("pagination")
public final Lsy d;
public final String toString() {
List<HUn> list = this.b;
Lsy lsy = this.d;
StringBuilder sb = new StringBuilder("DirectDebitBillerSearchListEntity(billers=");
sb.append(list);
sb.append(", billPaymentBillerPaginationEntity=");
sb.append(lsy);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
List<HUn> list = this.b;
int hashCode = list == null ? 0 : list.hashCode();
Lsy lsy = this.d;
return (hashCode * 31) + (lsy != null ? lsy.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ZRS)) {
return false;
}
ZRS zrs = (ZRS) obj;
return C14957gcv.b(this.b, zrs.b) && C14957gcv.b(this.d, zrs.d);
}
}