commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SetDeliveryAddressCustomFieldChange.php
1<?php
2
3declare(strict_types=1);
10
13
15{
16
17 public const FIELD_DELIVERY_ID = 'deliveryId';
18 public const FIELD_ADDRESS_ID = 'addressId';
19 public const FIELD_NAME = 'name';
20 public const FIELD_CUSTOM_TYPE_ID = 'customTypeId';
21 public const FIELD_PREVIOUS_VALUE = 'previousValue';
22 public const FIELD_NEXT_VALUE = 'nextValue';
23
28 public function getChange();
29
34 public function getType();
35
42 public function getDeliveryId();
43
50 public function getAddressId();
51
58 public function getName();
59
66 public function getCustomTypeId();
67
74 public function getPreviousValue();
75
82 public function getNextValue();
83
87 public function setChange(?string $change): void;
88
92 public function setDeliveryId(?string $deliveryId): void;
93
97 public function setAddressId(?string $addressId): void;
98
102 public function setName(?string $name): void;
103
107 public function setCustomTypeId(?string $customTypeId): void;
108
112 public function setPreviousValue( $previousValue): void;
113
117 public function setNextValue( $nextValue): void;
118}