1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php
namespace Commercetools\Core\Request\ProductSelections\Command;
use Commercetools\Core\Request\CustomField\Command\SetCustomFieldAction;
/**
* @package Commercetools\Core\Request\ProductSelections\Command
* @link https://docs.commercetools.com/http-api-projects-productselections.html#set-customfield
* @method string getAction()
* @method ProductSelectionSetCustomFieldAction setAction(string $action = null)
* @method string getName()
* @method ProductSelectionSetCustomFieldAction setName(string $name = null)
* @method mixed getValue()
* @method ProductSelectionSetCustomFieldAction setValue($value = null)
*/
class ProductSelectionSetCustomFieldAction extends SetCustomFieldAction
{
}