/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for document objects */ export type Document = { /** * Document ID */ id: number; /** * Name of the document */ document_name: string; /** * Type of document (e.g., 'pdf', 'text') */ document_type: string; /** * Access level of the document */ access: string; /** * Training status of the document */ training_status: string; /** * Date when the document was created */ date_created: string; /** * Date when the document was last modified */ last_modified: string; /** * URL to access the document */ url: string; /** * Additional metadata for the document */ metadata: any; };