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

43 lines
1.2 KiB
Java

package o;
import org.threeten.bp.OffsetDateTime;
/* loaded from: classes3.dex */
public final class Dhj {
public final OffsetDateTime a;
public final String c;
public Dhj(OffsetDateTime offsetDateTime, String str) {
C14957gcv.e(str, "");
this.a = offsetDateTime;
this.c = str;
}
public final String toString() {
OffsetDateTime offsetDateTime = this.a;
String str = this.c;
StringBuilder sb = new StringBuilder("CloseAccountConfirmation(transactionDateTime=");
sb.append(offsetDateTime);
sb.append(", transactionId=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
OffsetDateTime offsetDateTime = this.a;
return ((offsetDateTime == null ? 0 : offsetDateTime.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Dhj)) {
return false;
}
Dhj dhj = (Dhj) obj;
return C14957gcv.b(this.a, dhj.a) && C14957gcv.b((Object) this.c, (Object) dhj.c);
}
}