/**
 * 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;
}
