/** * Representation of the 'DocumentMetadata' schema. */ export type DocumentMetadata = { /** * Metadata key name. * @example "contentObjectId" */ key: string; /** * An array of string values associated with the metadata key. If the key already exists, its values will be overwritten. Setting the value to null will delete the metadata key-value pair. */ value: string[] | null; /** * Match mode for the metadata key (ANY or ALL). * @example "ANY" */ matchMode?: 'ANY' | 'ALL' | any; } & Record; //# sourceMappingURL=document-metadata.d.ts.map