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 436 B
import type { AiId } from './ai-id.js'; import type { AiDeploymentModificationResponseMessage } from './ai-deployment-modification-response-message.js'; /** * Representation of the 'AiDeploymentModificationResponse' schema. */ export type AiDeploymentModificationResponse = { id: AiId; message: AiDeploymentModificationResponseMessage; } & Record<string, any>; //# sourceMappingURL=ai-deployment-modification-response.d.ts.map