import type { Payment } from './payment.entity'; /** * Fields required to create a Payment. */ export type CreatePaymentDto = Omit; /** * Fields allowed when updating a Payment. */ export type UpdatePaymentDto = Partial; /** * Full Payment shape returned by the API. */ export type PaymentResponse = Payment; //# sourceMappingURL=payment.dto.d.ts.map