import { AddonDetachExecutionRequest } from './AddonDetachExecutionRequest';
/** Request allowing the detachment of a service from its parent */
export interface DetachExecutionRequest {
    /** Addons information for the operation execution */
    addons?: AddonDetachExecutionRequest[];
    /** Indicates that order, if needed, will be automatically paid with preferred payment method */
    autoPayWithPreferredPaymentMethod: boolean;
    /** Duration selected for the operation execution */
    duration: string;
    /** Pricing mode selected for the operation execution */
    pricingMode: string;
    /** Quantity for the operation execution */
    quantity: number;
}
//# sourceMappingURL=DetachExecutionRequest.d.ts.map