1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?php
/**
* @author @jenschude <jens.schulze@commercetools.de>
*/
namespace Commercetools\Core\Model\ProductDiscount;
use Commercetools\Core\Model\Common\DiscountValue;
use Commercetools\Core\Model\Common\MoneyCollection;
/**
* @package Commercetools\Core\Model\ProductDiscount
* @ramlTestIgnoreFields('permyriad', 'money')
* @link https://docs.commercetools.com/http-api-projects-productDiscounts.html#productdiscountvalue
* @method string getType()
* @method ProductDiscountValue setType(string $type = null)
* @method int getPermyriad()
* @method ProductDiscountValue setPermyriad(int $permyriad = null)
* @method MoneyCollection getMoney()
* @method ProductDiscountValue setMoney(MoneyCollection $money = null)
*/
class ProductDiscountValue extends DiscountValue
{
}