1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Shopping Cart Rule data model
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\OfflineShipping\Model\SalesRule;
- /**
- * @api
- * @since 100.0.2
- */
- class Rule
- {
- /**
- * Free Shipping option "For matching items only"
- */
- const FREE_SHIPPING_ITEM = 1;
- /**
- * Free Shipping option "For shipment with matching items"
- */
- const FREE_SHIPPING_ADDRESS = 2;
- }
|