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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
<?php
/**
* @author @jenschude <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://docs.commercetools.com/http-api-projects-messages.html#paymentstatusinterfacecodeset-message
* @method string getId()
* @method PaymentStatusInterfaceCodeSetMessage setId(string $id = null)
* @method int getVersion()
* @method PaymentStatusInterfaceCodeSetMessage setVersion(int $version = null)
* @method DateTimeDecorator getCreatedAt()
* @method PaymentStatusInterfaceCodeSetMessage setCreatedAt(DateTime $createdAt = null)
* @method DateTimeDecorator getLastModifiedAt()
* @method PaymentStatusInterfaceCodeSetMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
* @method int getSequenceNumber()
* @method PaymentStatusInterfaceCodeSetMessage setSequenceNumber(int $sequenceNumber = null)
* @method Reference getResource()
* @method PaymentStatusInterfaceCodeSetMessage setResource(Reference $resource = null)
* @method int getResourceVersion()
* @method PaymentStatusInterfaceCodeSetMessage setResourceVersion(int $resourceVersion = null)
* @method string getType()
* @method PaymentStatusInterfaceCodeSetMessage setType(string $type = null)
* @method string getInterfaceCode()
* @method PaymentStatusInterfaceCodeSetMessage setInterfaceCode(string $interfaceCode = null)
* @method UserProvidedIdentifiers getResourceUserProvidedIdentifiers()
* phpcs:disable
* @method PaymentStatusInterfaceCodeSetMessage setResourceUserProvidedIdentifiers(UserProvidedIdentifiers $resourceUserProvidedIdentifiers = null)
* phpcs:enable
*/
class PaymentStatusInterfaceCodeSetMessage extends Message
{
const MESSAGE_TYPE = 'PaymentStatusInterfaceCodeSet';
public function fieldDefinitions()
{
$definitions = parent::fieldDefinitions();
$definitions['paymentId'] = [static::TYPE => 'string'];
$definitions['interfaceCode'] = [static::TYPE => 'string', static::OPTIONAL => true];
return $definitions;
}
/**
* @deprecated
* @return string
*/
public function getPaymentId()
{
return parent::getPaymentId();
}
/**
* @deprecated
* @param string $paymentId
* @return static
*/
public function setPaymentId($paymentId = null)
{
return parent::setPaymentId($paymentId);
}
}