1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php
/**
* @author @jenschude <jens.schulze@commercetools.de>
*/
namespace Commercetools\Core\Request\Products\Command;
use Commercetools\Core\Model\State\StateReference;
use Commercetools\Core\Request\States\Command\TransitionStateAction;
/**
* @package Commercetools\Core\Request\Products\Command
* @link https://docs.commercetools.com/http-api-projects-products.html#transition-state
* @method string getAction()
* @method ProductTransitionStateAction setAction(string $action = null)
* @method StateReference getState()
* @method ProductTransitionStateAction setState(StateReference $state = null)
* @method bool getForce()
* @method ProductTransitionStateAction setForce(bool $force = null)
*/
class ProductTransitionStateAction extends TransitionStateAction
{
}