import { OrderPlanProduct } from './OrderPlanProduct';
/** Plan data from order */
export interface OrderPlan {
    /** Plan code used when ordering through /order/cart */
    code?: string;
    /** Duration chosen when ordering through /order/cart (ISO 8601) */
    duration?: string;
    /** Pricing mode used when ordering through /order/cart */
    pricingMode?: string;
    /** Product from /order/cart */
    product: OrderPlanProduct;
    /** Quantity ordered */
    quantity?: number;
}
//# sourceMappingURL=OrderPlan.d.ts.map