@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
50 lines (49 loc) • 1.06 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[];
}