UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

38 lines (37 loc) 755 B
/** * Interface for created workflow objects. * @export * @interface IVariable */ export interface ICreatedWorkflow { /** * Unique workflow key. * @type {string} * @memberof ICreatedWorkflow */ workflowKey: string; /** * Description of the workflow. * @type {string} * @memberof ICreatedWorkflow */ workflowDescription: string; /** * Workflow ID. * @type {string} * @memberof ICreatedWorkflow */ workflowID: string; /** * Version of the workflow. * @type {string} * @memberof ICreatedWorkflow */ workflowVersion: string; /** * Workflow vendor. * @type {string} * @memberof ICreatedWorkflow */ vendor: string; }