commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
UnknownChange.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
14 interface UnknownChange extends Change
15 {
16 
17  public const FIELD_PREVIOUS_VALUE = 'previousValue';
18  public const FIELD_NEXT_VALUE = 'nextValue';
19 
24  public function getType();
25 
32  public function getChange();
33 
40  public function getPreviousValue();
41 
48  public function getNextValue();
49 
53  public function setChange(?string $change): void;
54 
58  public function setPreviousValue( $previousValue): void;
59 
63  public function setNextValue( $nextValue): void;
64 }