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