UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

21 lines 527 B
/** * Representation of the 'DocumentMetadataUpdateError' schema. */ export type DocumentMetadataUpdateError = { /** * Document ID that caused the error. * @example "550e8400-e29b-41d4-a716-446655440000" */ target: string; /** * HTTP error status code. * @example 500 */ code: number; /** * Error message. * @example "Some unexpected error occurred." */ message: string; } & Record<string, any>; //# sourceMappingURL=document-metadata-update-error.d.ts.map