UNPKG

@zowe/zos-files-for-zowe-sdk

Version:

Zowe SDK to interact with files and data sets on z/OS

23 lines 431 B
export interface IUploadResult { /** * Upload status */ success: boolean; /** * Name of input file */ from: string; /** * Name of data set */ to: string; /** * Optional, any error encounter while uploading the data */ error?: any; /** * Optional, etag set when writing the file */ etag?: string; } //# sourceMappingURL=IUploadResult.d.ts.map