commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SetLastNameChange.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
14 interface SetLastNameChange extends Change
15 {
16 
17  public const FIELD_PREVIOUS_VALUE = 'previousValue';
18  public const FIELD_NEXT_VALUE = 'nextValue';
19 
24  public function getType();
25 
30  public function getChange();
31 
38  public function getPreviousValue();
39 
46  public function getNextValue();
47 
51  public function setChange(?string $change): void;
52 
56  public function setPreviousValue(?string $previousValue): void;
57 
61  public function setNextValue(?string $nextValue): void;
62 }