Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-offline-shipping/Model/SalesRule/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/magento/module-offline-shipping/Model/SalesRule/Rule.php

<?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;
}