commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SetCustomFieldChange.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
14 interface SetCustomFieldChange extends Change
15 {
16 
17  public const FIELD_PREVIOUS_VALUE = 'previousValue';
18  public const FIELD_NEXT_VALUE = 'nextValue';
19  public const FIELD_NAME = 'name';
20  public const FIELD_CUSTOM_TYPE_ID = 'customTypeId';
21 
26  public function getChange();
27 
32  public function getType();
33 
40  public function getPreviousValue();
41 
48  public function getNextValue();
49 
56  public function getName();
57 
64  public function getCustomTypeId();
65 
69  public function setChange(?string $change): void;
70 
74  public function setPreviousValue( $previousValue): void;
75 
79  public function setNextValue( $nextValue): void;
80 
84  public function setName(?string $name): void;
85 
89  public function setCustomTypeId(?string $customTypeId): void;
90 }