export type UpdateDocumentDto = { /** * The document's name */ name: string; /** * The visibility status of the document */ visibility?: UpdateDocumentDto.visibility; }; export declare namespace UpdateDocumentDto { /** * The visibility status of the document */ enum visibility { PUBLIC = "PUBLIC", PRIVATE = "PRIVATE" } }