/** * 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 */ /** * @nullable */ export type PtDocumentInput = { /** * ATCUD series ID to use for PT numbering. Required for PT manual documents. * @nullable */ series_id?: string | null; /** * Marks this PT document as manually issued/offline. * @nullable */ manual?: boolean | null; /** * Manual PT sequence number shown on the offline/original document. * @minimum 1 * @nullable */ manual_sequential_number?: number | null; /** * Offline/manual PT series code shown on the original document. * @minLength 1 * @maxLength 35 * @nullable */ manual_series_code?: string | null; /** * PT operator first name snapshot for PT compliance. * @minLength 1 * @nullable */ operator_first_name?: string | null; /** * PT operator last name snapshot for PT compliance. * @minLength 1 * @nullable */ operator_last_name?: string | null; /** * PT operator tax number snapshot for PT compliance. * @minLength 1 * @nullable */ operator_tax_number?: string | null; /** * Deprecated alias for PT operator first name snapshot. * @minLength 1 * @nullable */ account_first_name?: string | null; /** * Deprecated alias for PT operator last name snapshot. * @minLength 1 * @nullable */ account_last_name?: string | null; /** * Deprecated alias for PT operator tax number snapshot. * @minLength 1 * @nullable */ account_tax_number?: string | null; } | null; //# sourceMappingURL=ptDocumentInput.d.ts.map