import { ExecutionStateEnum } from './ExecutionStateEnum';
/** An execution of the backup workflow */
export interface Execution {
    /** Last date of cron trigger execution */
    executedAt: string;
    /** Execution ID */
    id: string;
    /** Execution state */
    state: ExecutionStateEnum;
    /** Information about state */
    stateInfo: string;
}
//# sourceMappingURL=Execution.d.ts.map