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

44 lines
1.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import org.threeten.bp.OffsetDateTime;
/* loaded from: classes3.dex */
public final class QpB {
public final OffsetDateTime b;
public final String c;
public QpB(String str, OffsetDateTime offsetDateTime) {
C14957gcv.e(str, "");
this.c = str;
this.b = offsetDateTime;
}
public final String toString() {
String str = this.c;
OffsetDateTime offsetDateTime = this.b;
StringBuilder sb = new StringBuilder("JuristicRequestFormResponse(email=");
sb.append(str);
sb.append(", transactionDateTime=");
sb.append(offsetDateTime);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
OffsetDateTime offsetDateTime = this.b;
return (hashCode * 31) + (offsetDateTime == null ? 0 : offsetDateTime.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof QpB)) {
return false;
}
QpB qpB = (QpB) obj;
return C14957gcv.b((Object) this.c, (Object) qpB.c) && C14957gcv.b(this.b, qpB.b);
}
}