commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
DeliveryCustomFieldChangedMessage.php
1<?php
2
3declare(strict_types=1);
10
13
15{
16 public const FIELD_NAME = 'name';
17 public const FIELD_VALUE = 'value';
18 public const FIELD_PREVIOUS_VALUE = 'previousValue';
19 public const FIELD_DELIVERY_ID = 'deliveryId';
20
27 public function getName();
28
35 public function getValue();
36
44 public function getPreviousValue();
45
52 public function getDeliveryId();
53
57 public function setName(?string $name): void;
58
62 public function setValue($value): void;
63
67 public function setPreviousValue($previousValue): void;
68
72 public function setDeliveryId(?string $deliveryId): void;
73}