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
<?php
/**
* @author @jenschude <jens.schulze@commercetools.de>
*/
namespace Commercetools\Core\Model\Message;
use Commercetools\Core\Model\Product\ProductProjection;
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#productdeleted-message
* @method string getId()
* @method ProductDeletedMessage setId(string $id = null)
* @method int getVersion()
* @method ProductDeletedMessage setVersion(int $version = null)
* @method DateTimeDecorator getCreatedAt()
* @method ProductDeletedMessage setCreatedAt(DateTime $createdAt = null)
* @method DateTimeDecorator getLastModifiedAt()
* @method ProductDeletedMessage setLastModifiedAt(DateTime $lastModifiedAt = null)
* @method int getSequenceNumber()
* @method ProductDeletedMessage setSequenceNumber(int $sequenceNumber = null)
* @method Reference getResource()
* @method ProductDeletedMessage setResource(Reference $resource = null)
* @method int getResourceVersion()
* @method ProductDeletedMessage setResourceVersion(int $resourceVersion = null)
* @method string getType()
* @method ProductDeletedMessage setType(string $type = null)
* @method array getRemovedImageUrls()
* @method ProductDeletedMessage setRemovedImageUrls(array $removedImageUrls = null)
* @method ProductProjection getCurrentProjection()
* @method ProductDeletedMessage setCurrentProjection(ProductProjection $currentProjection = null)
* @method UserProvidedIdentifiers getResourceUserProvidedIdentifiers()
* phpcs:disable
* @method ProductDeletedMessage setResourceUserProvidedIdentifiers(UserProvidedIdentifiers $resourceUserProvidedIdentifiers = null)
* phpcs:enable
*/
class ProductDeletedMessage extends Message
{
const MESSAGE_TYPE = 'ProductDeleted';
public function fieldDefinitions()
{
$definitions = parent::fieldDefinitions();
$definitions['removedImageUrls'] = [static::TYPE => 'array'];
$definitions['currentProjection'] = [static::TYPE => ProductProjection::class, static::OPTIONAL => true];
return $definitions;
}
}