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

48 lines
1.2 KiB
Java

package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class LUN {
private final double c;
private final List<LhO> d;
private final String e;
public LUN(double d, String str, List<LhO> list) {
C14957gcv.e(str, "");
C14957gcv.e(list, "");
this.c = d;
this.e = str;
this.d = list;
}
public final String toString() {
double d = this.c;
String str = this.e;
List<LhO> list = this.d;
StringBuilder sb = new StringBuilder("Deposit(totalAvailableBalance=");
sb.append(d);
sb.append(", isTotalFromAllAccounts=");
sb.append(str);
sb.append(", adsList=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((Double.hashCode(this.c) * 31) + this.e.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof LUN)) {
return false;
}
LUN lun = (LUN) obj;
return Double.compare(this.c, lun.c) == 0 && C14957gcv.b((Object) this.e, (Object) lun.e) && C14957gcv.b(this.d, lun.d);
}
}