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
<?php
/**
*/
namespace Commercetools\Core\Model\Message;
use Commercetools\Core\Model\Customer\CustomerReference;
use Commercetools\Core\Model\CustomerGroup\CustomerGroupReference;
use Commercetools\Core\Model\Common\DateTimeDecorator;
use DateTime;
use Commercetools\Core\Model\Common\Reference;
/**
* @package Commercetools\Core\Model\Message
* @link https://docs.commercetools.com/http-api-projects-messages.html#ordercustomerset-message
*
* @method string getId()
* @method OrderCustomerSetMessage setId(string $id = null)
* @method int getVersion()
* @method OrderCustomerSetMessage setVersion(int $version = null)
* @method DateTimeDecorator getCreatedAt()
* @method OrderCustomerSetMessage setCreatedAt(DateTime $createdAt = null)
* @method DateTimeDecorator getLastModifiedAt()
* @method OrderCustomerSetMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
* @method int getSequenceNumber()
* @method OrderCustomerSetMessage setSequenceNumber(int $sequenceNumber = null)
* @method Reference getResource()
* @method OrderCustomerSetMessage setResource(Reference $resource = null)
* @method int getResourceVersion()
* @method OrderCustomerSetMessage setResourceVersion(int $resourceVersion = null)
* @method string getType()
* @method OrderCustomerSetMessage setType(string $type = null)
* @method CustomerReference getCustomer()
* @method OrderCustomerSetMessage setCustomer(CustomerReference $customer = null)
* @method CustomerGroupReference getCustomerGroup()
* @method OrderCustomerSetMessage setCustomerGroup(CustomerGroupReference $customerGroup = null)
* @method CustomerReference getOldCustomer()
* @method OrderCustomerSetMessage setOldCustomer(CustomerReference $oldCustomer = null)
* @method CustomerGroupReference getOldCustomerGroup()
* @method OrderCustomerSetMessage setOldCustomerGroup(CustomerGroupReference $oldCustomerGroup = null)
* @method UserProvidedIdentifiers getResourceUserProvidedIdentifiers()
* phpcs:disable
* @method OrderCustomerSetMessage setResourceUserProvidedIdentifiers(UserProvidedIdentifiers $resourceUserProvidedIdentifiers = null)
* phpcs:enable
*/
class OrderCustomerSetMessage extends Message
{
const MESSAGE_TYPE = 'OrderCustomerSet';
public function fieldDefinitions()
{
$definitions = parent::fieldDefinitions();
$definitions['customer'] = [static::TYPE => CustomerReference::class, static::OPTIONAL => true];
$definitions['customerGroup'] = [static::TYPE => CustomerGroupReference::class, static::OPTIONAL => true];
$definitions['oldCustomer'] = [static::TYPE => CustomerReference::class, static::OPTIONAL => true];
$definitions['oldCustomerGroup'] = [static::TYPE => CustomerGroupReference::class, static::OPTIONAL => true];
return $definitions;
}
}