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