@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
18 lines • 457 B
TypeScript
import type { DocumentStatus } from './document-status.js';
/**
* Representation of the 'DocumentsStatusResponse' schema.
*/
export type DocumentsStatusResponse = {
/**
* @example 1
*/
count?: number;
resources?: ({
/**
* @example "uuid"
*/
id?: string;
status?: DocumentStatus;
} & Record<string, any>)[];
} & Record<string, any>;
//# sourceMappingURL=documents-status-response.d.ts.map