UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 439 B
import { History } from './followUp/History'; import { StatusEnum } from './followUp/StatusEnum'; import { StepEnum } from './followUp/StepEnum'; /** Follow up history of an order */ export interface FollowUp { /** Step history of order follow-up */ history: History[]; /** Step status of order follow-up */ status: StatusEnum; /** Step of order follow-up */ step: StepEnum; } //# sourceMappingURL=FollowUp.d.ts.map