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
<?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 Commercetools\Core\Model\Product\ProductProjection;
use Commercetools\Core\Model\Common\LocalizedString;
use DateTime;
/**
* @package Commercetools\Core\Model\Message
* @link https://docs.commercetools.com/http-api-projects-messages.html#productslugchanged-message
* @method string getId()
* @method ProductSlugChangedMessage setId(string $id = null)
* @method DateTimeDecorator getCreatedAt()
* @method ProductSlugChangedMessage setCreatedAt(DateTime $createdAt = null)
* @method int getSequenceNumber()
* @method ProductSlugChangedMessage setSequenceNumber(int $sequenceNumber = null)
* @method Reference getResource()
* @method ProductSlugChangedMessage setResource(Reference $resource = null)
* @method int getResourceVersion()
* @method ProductSlugChangedMessage setResourceVersion(int $resourceVersion = null)
* @method string getType()
* @method ProductSlugChangedMessage setType(string $type = null)
* @method LocalizedString getSlug()
* @method ProductSlugChangedMessage setSlug(LocalizedString $slug = null)
* @method int getVersion()
* @method ProductSlugChangedMessage setVersion(int $version = null)
* @method DateTimeDecorator getLastModifiedAt()
* @method ProductSlugChangedMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
* @method UserProvidedIdentifiers getResourceUserProvidedIdentifiers()
* phpcs:disable
* @method ProductSlugChangedMessage setResourceUserProvidedIdentifiers(UserProvidedIdentifiers $resourceUserProvidedIdentifiers = null)
* phpcs:enable
* @method LocalizedString getOldSlug()
* @method ProductSlugChangedMessage setOldSlug(LocalizedString $oldSlug = null)
*/
class ProductSlugChangedMessage extends Message
{
const MESSAGE_TYPE = 'ProductSlugChanged';
public function fieldDefinitions()
{
$definitions = parent::fieldDefinitions();
$definitions['slug'] = [static::TYPE => LocalizedString::class];
$definitions['oldSlug'] = [static::TYPE => LocalizedString::class, static::OPTIONAL => true];
return $definitions;
}
}