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

64 lines
1.8 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class Yag {
public final Integer a;
public final Boolean b;
public final Integer d;
public final Integer e;
public Yag(Integer num, Integer num2, Integer num3, Boolean bool) {
this.e = num;
this.d = num2;
this.a = num3;
this.b = bool;
}
private /* synthetic */ Yag(byte b) {
this(0, 0, 0, Boolean.FALSE);
}
public final String toString() {
Integer num = this.e;
Integer num2 = this.d;
Integer num3 = this.a;
Boolean bool = this.b;
StringBuilder sb = new StringBuilder("QuotaLimit(maximumLimit=");
sb.append(num);
sb.append(", quotaLimit=");
sb.append(num2);
sb.append(", stock=");
sb.append(num3);
sb.append(", limitationFlag=");
sb.append(bool);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Integer num = this.e;
int hashCode = num == null ? 0 : num.hashCode();
Integer num2 = this.d;
int hashCode2 = num2 == null ? 0 : num2.hashCode();
Integer num3 = this.a;
int hashCode3 = num3 == null ? 0 : num3.hashCode();
Boolean bool = this.b;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (bool != null ? bool.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Yag)) {
return false;
}
Yag yag = (Yag) obj;
return C14957gcv.b(this.e, yag.e) && C14957gcv.b(this.d, yag.d) && C14957gcv.b(this.a, yag.a) && C14957gcv.b(this.b, yag.b);
}
public Yag() {
this((byte) 0);
}
}