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\CartSetLineItemCustomFieldAction;
/**
* @package Commercetools\Core\Request\Orders\Command
*
* @method string getAction()
* @method OrderSetLineItemCustomFieldAction setAction(string $action = null)
* @method string getName()
* @method OrderSetLineItemCustomFieldAction setName(string $name = null)
* @method string getLineItemId()
* @method OrderSetLineItemCustomFieldAction setLineItemId(string $lineItemId = null)
* @method mixed getValue()
* @method OrderSetLineItemCustomFieldAction setValue($value = null)
*/
class OrderSetLineItemCustomFieldAction extends CartSetLineItemCustomFieldAction
{
}