93 lines
2.8 KiB
Java
93 lines
2.8 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ZUN {
|
|
|
|
@SerializedName("signature")
|
|
public String a;
|
|
|
|
@SerializedName("cardRefNo")
|
|
public final String b;
|
|
|
|
@SerializedName("ecomLimitAmount")
|
|
public Integer c;
|
|
|
|
@SerializedName("purchaseLimitAmount")
|
|
public Integer d;
|
|
|
|
@SerializedName("tilesVersion")
|
|
public String e;
|
|
|
|
@SerializedName("withdrawalLimitAmount")
|
|
public Integer g;
|
|
|
|
private ZUN(String str, Integer num, Integer num2, Integer num3, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str3, "");
|
|
this.b = str;
|
|
this.g = num;
|
|
this.d = num2;
|
|
this.c = num3;
|
|
this.e = null;
|
|
this.a = str3;
|
|
}
|
|
|
|
public /* synthetic */ ZUN(String str, Integer num, Integer num2, Integer num3) {
|
|
this(str, num, num2, num3, (byte) 0);
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public ZUN(String str, Integer num, Integer num2, Integer num3, byte b) {
|
|
this(str, num, num2, num3, null, "");
|
|
C14957gcv.e(str, "");
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
Integer num = this.g;
|
|
Integer num2 = this.d;
|
|
Integer num3 = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.a;
|
|
StringBuilder sb = new StringBuilder("DebitCardLimitRequest(cardRefNo=");
|
|
sb.append(str);
|
|
sb.append(", withdrawalLimitAmount=");
|
|
sb.append(num);
|
|
sb.append(", purchaseLimitAmount=");
|
|
sb.append(num2);
|
|
sb.append(", eComLimitAmount=");
|
|
sb.append(num3);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str2);
|
|
sb.append(", signature=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.b.hashCode();
|
|
Integer num = this.g;
|
|
int hashCode2 = num == null ? 0 : num.hashCode();
|
|
Integer num2 = this.d;
|
|
int hashCode3 = num2 == null ? 0 : num2.hashCode();
|
|
Integer num3 = this.c;
|
|
int hashCode4 = num3 == null ? 0 : num3.hashCode();
|
|
String str = this.e;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str != null ? str.hashCode() : 0)) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof ZUN)) {
|
|
return false;
|
|
}
|
|
ZUN zun = (ZUN) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) zun.b) && C14957gcv.b(this.g, zun.g) && C14957gcv.b(this.d, zun.d) && C14957gcv.b(this.c, zun.c) && C14957gcv.b((Object) this.e, (Object) zun.e) && C14957gcv.b((Object) this.a, (Object) zun.a);
|
|
}
|
|
}
|