@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**.
13 lines • 358 B
TypeScript
import type { DSetUrl } from './d-set-url.js';
/**
* Response for successful file creation
*/
export type DSetFileCreationResponse = {
/**
* File creation response message
* @example "File creation acknowledged"
*/
message: string;
url: DSetUrl;
} & Record<string, any>;
//# sourceMappingURL=d-set-file-creation-response.d.ts.map