@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
14 lines • 524 B
TypeScript
import type { BasePipelineMinimalResponse } from './base-pipeline-minimal-response.js';
import type { SFTPConfigurationMinimal } from './sftp-configuration-minimal.js';
/**
* Representation of the 'SFTPPipelineMinimalResponse' schema.
*/
export type SFTPPipelineMinimalResponse = BasePipelineMinimalResponse & {
type: 'SFTP';
configuration?: SFTPConfigurationMinimal;
/**
* @example true
*/
metadata?: boolean;
} & Record<string, any>;
//# sourceMappingURL=sftp-pipeline-minimal-response.d.ts.map