This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jens Schulze
committed
Sep 25, 2015
1 parent
95437d8
commit 3a6cc3d
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
/** | ||
* @author @ct-jensschulze <jens.schulze@commercetools.de> | ||
*/ | ||
|
||
namespace Commercetools\Core\Model\Message; | ||
|
||
use Commercetools\Core\Model\Common\DateTimeDecorator; | ||
use Commercetools\Core\Model\Common\Reference; | ||
use Commercetools\Core\Model\State\StateReference; | ||
|
||
/** | ||
* @package Commercetools\Core\Model\Message | ||
* | ||
* @method string getId() | ||
* @method OrderStateTransitionMessage setId(string $id = null) | ||
* @method DateTimeDecorator getCreatedAt() | ||
* @method OrderStateTransitionMessage setCreatedAt(\DateTime $createdAt = null) | ||
* @method int getSequenceNumber() | ||
* @method OrderStateTransitionMessage setSequenceNumber(int $sequenceNumber = null) | ||
* @method Reference getResource() | ||
* @method OrderStateTransitionMessage setResource(Reference $resource = null) | ||
* @method int getResourceVersion() | ||
* @method OrderStateTransitionMessage setResourceVersion(int $resourceVersion = null) | ||
* @method string getType() | ||
* @method OrderStateTransitionMessage setType(string $type = null) | ||
* @method StateReference getState() | ||
* @method OrderStateTransitionMessage setState(StateReference $state = null) | ||
*/ | ||
class OrderStateTransitionMessage extends StateTransitionMessage | ||
{ | ||
const MESSAGE_TYPE = 'OrderStateTransition'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
/** | ||
* @author @ct-jensschulze <jens.schulze@commercetools.de> | ||
*/ | ||
|
||
namespace Commercetools\Core\Request\Orders\Command; | ||
|
||
use Commercetools\Core\Request\States\Command\TransitionStateAction; | ||
use Commercetools\Core\Model\State\StateReference; | ||
|
||
/** | ||
* @package Commercetools\Core\Request\Orders\Command | ||
* | ||
* @method string getAction() | ||
* @method OrderTransitionStateAction setAction(string $action = null) | ||
* @method StateReference getState() | ||
* @method OrderTransitionStateAction setState(StateReference $state = null) | ||
*/ | ||
class OrderTransitionStateAction extends TransitionStateAction | ||
{ | ||
|
||
} |