44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
package o;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class sLv {
|
|
public final List<Hct> c;
|
|
public final VnM e;
|
|
|
|
public sLv(VnM vnM, List<Hct> list) {
|
|
this.e = vnM;
|
|
this.c = list;
|
|
}
|
|
|
|
public final String toString() {
|
|
VnM vnM = this.e;
|
|
List<Hct> list = this.c;
|
|
StringBuilder sb = new StringBuilder("BillPaymentBillersConfig(cache=");
|
|
sb.append(vnM);
|
|
sb.append(", configs=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
VnM vnM = this.e;
|
|
int hashCode = vnM == null ? 0 : vnM.hashCode();
|
|
List<Hct> list = this.c;
|
|
return (hashCode * 31) + (list != null ? list.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof sLv)) {
|
|
return false;
|
|
}
|
|
sLv slv = (sLv) obj;
|
|
return C14957gcv.b(this.e, slv.e) && C14957gcv.b(this.c, slv.c);
|
|
}
|
|
}
|