/** Contains all information for the given addon in order to be detached */
export interface AddonDetachExecutionRequest {
    /** Duration selected for the operation execution */
    duration: string;
    /** Commercial offer to detach the service to */
    planCode: string;
    /** Pricing mode selected for the operation execution */
    pricingMode: string;
    /** Quantity for the operation execution */
    quantity: number;
    /** ID of the service that will be detached */
    serviceId: number;
}
//# sourceMappingURL=AddonDetachExecutionRequest.d.ts.map