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.
feat(Messages): add OrderPaymentStateChanged message
Closes #312
- Loading branch information
Jens Schulze
committed
Jun 1, 2017
1 parent
267ce5c
commit 6afb611
Showing
2 changed files
with
54 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
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,45 @@ | ||
<?php | ||
/** | ||
* @author @jayS-de <jens.schulze@commercetools.de> | ||
*/ | ||
|
||
namespace Commercetools\Core\Model\Message; | ||
|
||
use Commercetools\Core\Model\Common\DateTimeDecorator; | ||
use Commercetools\Core\Model\Common\Reference; | ||
use DateTime; | ||
|
||
/** | ||
* @package Commercetools\Core\Model\Message | ||
* @link https://dev.commercetools.com/http-api-projects-messages.html#orderpaymentstatechanged-message | ||
* @method string getId() | ||
* @method OrderPaymentChangedMessage setId(string $id = null) | ||
* @method DateTimeDecorator getCreatedAt() | ||
* @method OrderPaymentChangedMessage setCreatedAt(DateTime $createdAt = null) | ||
* @method int getSequenceNumber() | ||
* @method OrderPaymentChangedMessage setSequenceNumber(int $sequenceNumber = null) | ||
* @method Reference getResource() | ||
* @method OrderPaymentChangedMessage setResource(Reference $resource = null) | ||
* @method int getResourceVersion() | ||
* @method OrderPaymentChangedMessage setResourceVersion(int $resourceVersion = null) | ||
* @method string getType() | ||
* @method OrderPaymentChangedMessage setType(string $type = null) | ||
* @method int getVersion() | ||
* @method OrderPaymentChangedMessage setVersion(int $version = null) | ||
* @method DateTimeDecorator getLastModifiedAt() | ||
* @method OrderPaymentChangedMessage setLastModifiedAt(DateTime $lastModifiedAt = null) | ||
* @method string getPaymentState() | ||
* @method OrderPaymentChangedMessage setPaymentState(string $paymentState = null) | ||
*/ | ||
class OrderPaymentChangedMessage extends Message | ||
{ | ||
const MESSAGE_TYPE = 'OrderPaymentStateChanged'; | ||
|
||
public function fieldDefinitions() | ||
{ | ||
$definitions = parent::fieldDefinitions(); | ||
$definitions['paymentState'] = [static::TYPE => 'string']; | ||
|
||
return $definitions; | ||
} | ||
} |