import type { PaymentAttempt } from './payment-attempt.entity'; /** * Broad DTO: omits only the BaseEntity audit fields. */ export type CreatePaymentAttemptDto = Omit; /** * Fields allowed when updating a PaymentAttempt. */ export type UpdatePaymentAttemptDto = Partial; /** * Full PaymentAttempt shape returned by the API. */ export type PaymentAttemptResponse = PaymentAttempt; //# sourceMappingURL=payment-attempt.dto.d.ts.map