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

63 lines
2.0 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class kLA {
public final String a;
public final String b;
public final String c;
public final String d;
public final Double e;
public kLA(String str, String str2, String str3, String str4, Double d) {
this.d = str;
this.c = str2;
this.a = str3;
this.b = str4;
this.e = d;
}
public final String toString() {
String str = this.d;
String str2 = this.c;
String str3 = this.a;
String str4 = this.b;
Double d = this.e;
StringBuilder sb = new StringBuilder("BScanCEntryPoint(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.d;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.c;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.a;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.b;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
Double d = this.e;
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 kLA)) {
return false;
}
kLA kla = (kLA) obj;
return C14957gcv.b((Object) this.d, (Object) kla.d) && C14957gcv.b((Object) this.c, (Object) kla.c) && C14957gcv.b((Object) this.a, (Object) kla.a) && C14957gcv.b((Object) this.b, (Object) kla.b) && C14957gcv.b(this.e, kla.e);
}
}