UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 315 B
import { Operation } from './Operation'; import { Order } from '../Order'; /** Describes an Operation and the associated Order */ export interface OperationAndOrder { /** Upgrade operation */ operation?: Operation; /** Order placed */ order?: Order; } //# sourceMappingURL=OperationAndOrder.d.ts.map