/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import type { CreatePtAtcudSeriesBodyDocumentType } from './createPtAtcudSeriesBodyDocumentType'; export type CreatePtAtcudSeriesBody = { /** Portugal fiscal document type tracked for ATCUD series numbering. */ document_type: CreatePtAtcudSeriesBodyDocumentType; /** * AT-communicated series code used in the PT document number. * @minLength 1 * @maxLength 35 */ series_code: string; /** * Validation code assigned by AT for the communicated series. * @minLength 1 * @maxLength 32 */ validation_code: string; /** * Legacy/legal first document number registered for this ATCUD series. * @minLength 1 * @maxLength 100 */ first_number?: string; /** First date for which the communicated series is valid. */ start_date: string; /** Whether this series is reserved for manually issued PT documents. */ is_manual?: boolean; /** * Initial PT legal sequence number for this series. * @minimum 1 */ initial_sequence?: number; }; //# sourceMappingURL=createPtAtcudSeriesBody.d.ts.map