import { ICancelScheduledValuesAutomationEvent } from '../interfaces';

export const createCancelScheduledValuesAutomationEvent = (cancelTime: number): ICancelScheduledValuesAutomationEvent => {
    return { cancelTime, type: 'cancelScheduledValues' };
};
