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
/**
*
*/
namespace Commercetools\Core\Request\Orders\Command;
use Commercetools\Core\Request\Carts\Command\CartSetCustomLineItemCustomFieldAction;
/**
* @package Commercetools\Core\Request\Orders\Command
*
* @method string getAction()
* @method OrderSetCustomLineItemCustomFieldAction setAction(string $action = null)
* @method string getName()
* @method OrderSetCustomLineItemCustomFieldAction setName(string $name = null)
* @method string getCustomLineItemId()
* @method OrderSetCustomLineItemCustomFieldAction setCustomLineItemId(string $customLineItemId = null)
* @method mixed getValue()
* @method OrderSetCustomLineItemCustomFieldAction setValue($value = null)
*/
class OrderSetCustomLineItemCustomFieldAction extends CartSetCustomLineItemCustomFieldAction
{
}