@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 • 334 B
TypeScript
import type { AiExecution } from './ai-execution.js';
/**
* Representation of the 'AiExecutionList' schema.
*/
export type AiExecutionList = {
/**
* Number of the resource instances in the list
*/
count: number;
resources: AiExecution[];
} & Record<string, any>;
//# sourceMappingURL=ai-execution-list.d.ts.map