UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

10 lines 407 B
import type { BasePipelineResponse } from './base-pipeline-response.js'; import type { SFTPConfiguration } from './sftp-configuration.js'; /** * Representation of the 'SFTPPipelineGetResponse' schema. */ export type SFTPPipelineGetResponse = BasePipelineResponse & { type?: 'SFTP'; configuration: SFTPConfiguration; } & Record<string, any>; //# sourceMappingURL=sftp-pipeline-get-response.d.ts.map