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

68 lines
2.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import com.huawei.hms.support.feature.result.CommonConstant;
/* loaded from: classes3.dex */
public final class ATV {
@SerializedName("expiryDateTime")
public final String a;
@SerializedName(CommonConstant.KEY_QR_CODE)
public final String b;
@SerializedName("remainingLimit")
public final Double c;
@SerializedName("validDuration")
public final String d;
@SerializedName("function")
public final String e;
public final String toString() {
String str = this.e;
String str2 = this.a;
String str3 = this.d;
String str4 = this.b;
Double d = this.c;
StringBuilder sb = new StringBuilder("BScanCEntryPointEntity(function=");
sb.append(str);
sb.append(", expiryDateTime=");
sb.append(str2);
sb.append(", validDuration=");
sb.append(str3);
sb.append(", qrCode=");
sb.append(str4);
sb.append(", remainingLimit=");
sb.append(d);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.a;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.d;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.b;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
Double d = this.c;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (d != null ? d.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ATV)) {
return false;
}
ATV atv = (ATV) obj;
return C14957gcv.b((Object) this.e, (Object) atv.e) && C14957gcv.b((Object) this.a, (Object) atv.a) && C14957gcv.b((Object) this.d, (Object) atv.d) && C14957gcv.b((Object) this.b, (Object) atv.b) && C14957gcv.b(this.c, atv.c);
}
}