50 lines
1.2 KiB
Java
50 lines
1.2 KiB
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Fut {
|
||
|
public final Integer a;
|
||
|
public final Integer b;
|
||
|
|
||
|
private /* synthetic */ Fut(byte b) {
|
||
|
this(null, null);
|
||
|
}
|
||
|
|
||
|
public Fut(Integer num, Integer num2) {
|
||
|
this.b = num;
|
||
|
this.a = num2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
Integer num = this.b;
|
||
|
Integer num2 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("AdditionalCreditLimit(baseCreditLimit=");
|
||
|
sb.append(num);
|
||
|
sb.append(", maxCreditLimit=");
|
||
|
sb.append(num2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
Integer num = this.b;
|
||
|
int hashCode = num == null ? 0 : num.hashCode();
|
||
|
Integer num2 = this.a;
|
||
|
return (hashCode * 31) + (num2 != null ? num2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Fut)) {
|
||
|
return false;
|
||
|
}
|
||
|
Fut fut = (Fut) obj;
|
||
|
return C14957gcv.b(this.b, fut.b) && C14957gcv.b(this.a, fut.a);
|
||
|
}
|
||
|
|
||
|
public Fut() {
|
||
|
this((byte) 0);
|
||
|
}
|
||
|
}
|