UNPKG

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