@sap-ai-sdk/ai-api
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
12 lines • 328 B
TypeScript
import type { AiScenario } from './ai-scenario.js';
/**
* Representation of the 'AiScenarioList' schema.
*/
export type AiScenarioList = {
/**
* Number of the resource instances in the list
*/
count: number;
resources: AiScenario[];
} & Record<string, any>;
//# sourceMappingURL=ai-scenario-list.d.ts.map