UNPKG

@sap-ai-sdk/document-grounding

Version:

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

16 lines 554 B
import type { MetadataConfigurationResponse } from './metadata-configuration-response.js'; /** * Representation of the 'ListMetadataConfigurations' schema. */ export type ListMetadataConfigurations = { /** * Total number of metadata configurations returned. * @example 1 */ count?: number; /** * List of metadata configuration objects. It will be empty array if no records found. */ resources?: MetadataConfigurationResponse[]; } & Record<string, any>; //# sourceMappingURL=list-metadata-configurations.d.ts.map