Untitled
unknown
plain_text
2 years ago
662 B
7
Indexable
import { ApiResponseProperty } from "@nestjs/swagger"; import { InvoiceManualInputDto } from "./invoice-manual-input.dto"; export class InvoiceManualResultDto { /** * Factura manual */ @ApiResponseProperty({ type: InvoiceManualInputDto }) invoice: InvoiceManualInputDto; /** * Id registro base datos encf */ @ApiResponseProperty() encfId?: number; /** * Numero documento (ENCF) */ @ApiResponseProperty() docNum?: string; /** * Mensajes y alertas */ @ApiResponseProperty({ type: typeof { info: [], warn: [] } }) messages: { info: string[], warn: string[] } = { info: [], warn: [] }; }
Editor is loading...