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**.

10 lines 412 B
import type { AiId } from './ai-id.js'; import type { AiDeploymentDeletionResponseMessage } from './ai-deployment-deletion-response-message.js'; /** * Representation of the 'AiDeploymentDeletionResponse' schema. */ export type AiDeploymentDeletionResponse = { id: AiId; message: AiDeploymentDeletionResponseMessage; } & Record<string, any>; //# sourceMappingURL=ai-deployment-deletion-response.d.ts.map