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
<?php
namespace Commercetools\Core\Model\Message;
use Commercetools\Core\Model\Channel\ChannelReference;
use Commercetools\Core\Model\Common\DateTimeDecorator;
use DateTime;
use Commercetools\Core\Model\Common\Reference;
/**
* @package Commercetools\Core\Model\Message
*
* @method string getId()
* @method OrderLineItemDistributionChannelSetMessage setId(string $id = null)
* @method int getVersion()
* @method OrderLineItemDistributionChannelSetMessage setVersion(int $version = null)
* @method DateTimeDecorator getCreatedAt()
* @method OrderLineItemDistributionChannelSetMessage setCreatedAt(DateTime $createdAt = null)
* @method DateTimeDecorator getLastModifiedAt()
* @method OrderLineItemDistributionChannelSetMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
* @method int getSequenceNumber()
* @method OrderLineItemDistributionChannelSetMessage setSequenceNumber(int $sequenceNumber = null)
* @method Reference getResource()
* @method OrderLineItemDistributionChannelSetMessage setResource(Reference $resource = null)
* @method int getResourceVersion()
* @method OrderLineItemDistributionChannelSetMessage setResourceVersion(int $resourceVersion = null)
* @method string getType()
* @method OrderLineItemDistributionChannelSetMessage setType(string $type = null)
* @method UserProvidedIdentifiers getResourceUserProvidedIdentifiers()
* phpcs:disable
* @method OrderLineItemDistributionChannelSetMessage setResourceUserProvidedIdentifiers(UserProvidedIdentifiers $resourceUserProvidedIdentifiers = null)
* phpcs:enable
* @method string getLineItemId()
* @method OrderLineItemDistributionChannelSetMessage setLineItemId(string $lineItemId = null)
* @method ChannelReference getDistributionChannel()
* phpcs:disable
* @method OrderLineItemDistributionChannelSetMessage setDistributionChannel(ChannelReference $distributionChannel = null)
* phpcs:enable
*/
class OrderLineItemDistributionChannelSetMessage extends Message
{
const MESSAGE_TYPE = 'OrderLineItemDistributionChannelSet';
public function fieldDefinitions()
{
$definitions = parent::fieldDefinitions();
$definitions['lineItemId'] = [static::TYPE => 'string'];
$definitions['distributionChannel'] = [static::TYPE => ChannelReference::class, static::OPTIONAL => true];
return $definitions;
}
}