@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**.
29 lines • 513 B
TypeScript
/**
* Error Response
*/
export type DSetError = {
/**
* Min Length: 1.
*/
code: string;
/**
* Min Length: 1.
*/
message: string;
/**
* Min Length: 1.
*/
target?: string;
requestId?: string;
details?: Set<{
/**
* Min Length: 1.
*/
code: string;
/**
* Min Length: 1.
*/
message: string;
} & Record<string, any>>;
} & Record<string, any>;
//# sourceMappingURL=d-set-error.d.ts.map