@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
56 lines (55 loc) • 1.33 kB
TypeScript
/**
* Interface for z/OSMF API response.
* @export
* @interface IAutomationStatus
*/
export interface IAutomationStatus {
/**
* User ID of the user who initiated the automation processing.
* @type {string}
* @memberof IAutomationStatus
*/
startUser: string;
/**
* Time that automation processing started.
* @type {number}
* @memberof IAutomationStatus
*/
startedTime: number;
/**
* Time that automation processing stopped.
* @type {number}
* @memberof IAutomationStatus
*/
stoppedTime: number;
/**
* Step that is being processed automatically or that caused stop.
* @type {string}
* @memberof IAutomationStatus
*/
currentStepName: string;
/**
* The step number.
* @type {string}
* @memberof IAutomationStatus
*/
currentStepNumber: string;
/**
* Step title.
* @type {string}
* @memberof IAutomationStatus
*/
currentStepTitle: string;
/**
* Message identifier for the accompanying message.
* @type {string}
* @memberof IAutomationStatus
*/
messageID: string;
/**
* Message text that describes the reason that automation is stopped.
* @type {string}
* @memberof IAutomationStatus
*/
messageText: string;
}