@zowe/zos-workflows-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS workflows APIs
50 lines • 1.11 kB
TypeScript
/**
* Interface for created workflow objects.
* @export
* @interface IVariable
*/
export interface ICreatedWorkflowLocal {
/**
* Unique workflow key.
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
workflowKey: string;
/**
* Description of the workflow.
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
workflowDescription: string;
/**
* Workflow ID.
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
workflowID: string;
/**
* Version of the workflow.
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
workflowVersion: string;
/**
* Workflow vendor.
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
vendor: string;
/**
* Uss files that were not deleted.
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
failedToDelete?: string[];
/**
* Files that were kept
* @type {string}
* @memberof ICreatedWorkflowLocal
*/
filesKept?: string[];
}
//# sourceMappingURL=ICreatedWorkflowLocal.d.ts.map