@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
15 lines • 633 B
TypeScript
import { EngagementRequestOption } from './EngagementRequestOption';
import { Order } from '../../../order/Order';
import { Pricing } from '../Pricing';
/** Ongoing Engagement request on a Service */
export interface EngagementRequest {
    /** Option Pricings this request will migrate the Services to */
    options: EngagementRequestOption[];
    /** If not null, Order to pay in order to trigger the Engagement */
    order?: Order;
    /** Pricing this request will migrate the Service to */
    pricing: Pricing;
    /** Date the request was made on */
    requestDate: string;
}
//# sourceMappingURL=EngagementRequest.d.ts.map