@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
28 lines • 681 B
TypeScript
/**
* The ZosFiles API response.
* @export
*/
export interface IZosFilesResponse {
/**
* Indicates the success of retrieving specified file information.
* @type {boolean}
*/
success: boolean;
/**
* Relevant information about the performed file operation.
* @type {string}
*/
commandResponse: string;
/**
* The api response object, housing any returned header information.
* @type {*}
*/
apiResponse?: any;
/**
* The error message text.
* If not defined, the command response will be used.
* @type {string}
*/
errorMessage?: string;
}
//# sourceMappingURL=IZosFilesResponse.d.ts.map