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

40 lines
943 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class xZD {
@SerializedName("maxAmount")
public final int d;
@SerializedName("minAmount")
public final int e;
public final String toString() {
int i = this.e;
int i2 = this.d;
StringBuilder sb = new StringBuilder("HmlOperatingAccountDetailsEntity(minAmount=");
sb.append(i);
sb.append(", maxAmount=");
sb.append(i2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (Integer.hashCode(this.e) * 31) + Integer.hashCode(this.d);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof xZD)) {
return false;
}
xZD xzd = (xZD) obj;
return this.e == xzd.e && this.d == xzd.d;
}
}