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

39 lines
897 B
Java

package o;
/* loaded from: classes3.dex */
public final class NYy {
public final int a;
public final int d;
public NYy(int i, int i2) {
this.a = i;
this.d = i2;
}
public final String toString() {
int i = this.a;
int i2 = this.d;
StringBuilder sb = new StringBuilder("HmlOperatingAccountDetails(minAmount=");
sb.append(i);
sb.append(", maxAmount=");
sb.append(i2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (Integer.hashCode(this.a) * 31) + Integer.hashCode(this.d);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NYy)) {
return false;
}
NYy nYy = (NYy) obj;
return this.a == nYy.a && this.d == nYy.d;
}
}