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 26 27
<?php
/**
*
*/
namespace Commercetools\Core\Request\Orders\Command;
use Commercetools\Core\Request\Carts\Command\CartSetLineItemCustomTypeAction;
use Commercetools\Core\Model\Type\TypeReference;
use Commercetools\Core\Model\CustomField\FieldContainer;
/**
* @package Commercetools\Core\Request\Orders\Command
*
* @method string getAction()
* @method OrderSetLineItemCustomTypeAction setAction(string $action = null)
* @method TypeReference getType()
* @method OrderSetLineItemCustomTypeAction setType(TypeReference $type = null)
* @method string getLineItemId()
* @method OrderSetLineItemCustomTypeAction setLineItemId(string $lineItemId = null)
* @method FieldContainer getFields()
* @method OrderSetLineItemCustomTypeAction setFields(FieldContainer $fields = null)
*/
class OrderSetLineItemCustomTypeAction extends CartSetLineItemCustomTypeAction
{
}