@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 • 541 B
TypeScript
/**
* Representation of the 'MetaApiError' schema.
*/
export type MetaApiError = {
/**
* 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=meta-api-error.d.ts.map