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

26 lines 535 B
/** * Representation of the 'AiApiError' schema. */ export type AiApiError = { /** * Descriptive error code (not http status code) */ code: string; /** * Plaintext error description */ message: string; /** * ID of the individual request */ requestId?: string; /** * Invoked URL */ target?: string; /** * Optional details of the error message */ details?: Record<string, any>; } & Record<string, any>; //# sourceMappingURL=ai-api-error.d.ts.map