51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class VPg {
|
|
|
|
@SerializedName("maxLimitTransaction")
|
|
public final int b;
|
|
|
|
@SerializedName("remainingLimits")
|
|
public final List<C7920cxT> d;
|
|
|
|
@SerializedName("amountRemark")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
int i = this.b;
|
|
List<C7920cxT> list = this.d;
|
|
StringBuilder sb = new StringBuilder("LimitEntity(amountRemark=");
|
|
sb.append(str);
|
|
sb.append(", maxLimitTransaction=");
|
|
sb.append(i);
|
|
sb.append(", remainingLimits=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.e;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
int hashCode2 = Integer.hashCode(this.b);
|
|
List<C7920cxT> list = this.d;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (list != null ? list.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof VPg)) {
|
|
return false;
|
|
}
|
|
VPg vPg = (VPg) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) vPg.e) && this.b == vPg.b && C14957gcv.b(this.d, vPg.d);
|
|
}
|
|
}
|