commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SetAddressCustomFieldChange.php
1<?php
2
3declare(strict_types=1);
10
14
16{
17
18 public const FIELD_ADDRESS = 'address';
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 getAddress();
43
50 public function getName();
51
58 public function getCustomTypeId();
59
66 public function getPreviousValue();
67
74 public function getNextValue();
75
79 public function setChange(?string $change): void;
80
84 public function setAddress(?Address $address): void;
85
89 public function setName(?string $name): void;
90
94 public function setCustomTypeId(?string $customTypeId): void;
95
99 public function setPreviousValue( $previousValue): void;
100
104 public function setNextValue( $nextValue): void;
105}