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

54 lines
1.6 KiB
Java

package o;
import org.threeten.bp.OffsetDateTime;
/* loaded from: classes3.dex */
public final class rBq {
public final OffsetDateTime b;
public final String c;
public final String d;
public final int e;
public rBq(OffsetDateTime offsetDateTime, int i, String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.b = offsetDateTime;
this.e = i;
this.c = str;
this.d = str2;
}
public final String toString() {
OffsetDateTime offsetDateTime = this.b;
int i = this.e;
String str = this.c;
String str2 = this.d;
StringBuilder sb = new StringBuilder("QRBarcode(expiryDateTime=");
sb.append(offsetDateTime);
sb.append(", validDuration=");
sb.append(i);
sb.append(", qrCode=");
sb.append(str);
sb.append(", barcode=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
OffsetDateTime offsetDateTime = this.b;
return ((((((offsetDateTime == null ? 0 : offsetDateTime.hashCode()) * 31) + Integer.hashCode(this.e)) * 31) + this.c.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof rBq)) {
return false;
}
rBq rbq = (rBq) obj;
return C14957gcv.b(this.b, rbq.b) && this.e == rbq.e && C14957gcv.b((Object) this.c, (Object) rbq.c) && C14957gcv.b((Object) this.d, (Object) rbq.d);
}
}