UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 399 B
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