UNPKG

@zowe/zos-workflows-for-zowe-sdk

Version:

Zowe SDK to interact with the z/OS workflows APIs

20 lines 431 B
/** * Interface for Step approver object. * @export * @interface IStepApprovers */ export interface IStepApprovers { /** * Id or ids separated by spaces * @type {string} * @memberof IStepApprovers */ approver: string; /** * Whether in id is substitution. * @type {boolean} * @memberof IStepApprovers */ approverSub: boolean; } //# sourceMappingURL=IStepApprovers.d.ts.map