commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
RemoveLocationChange.php
1 <?php
2 
3 declare(strict_types=1);
10 
14 
15 interface RemoveLocationChange extends Change
16 {
17 
18  public const FIELD_PREVIOUS_VALUE = 'previousValue';
19 
24  public function getType();
25 
30  public function getChange();
31 
38  public function getPreviousValue();
39 
43  public function setChange(?string $change): void;
44 
48  public function setPreviousValue(?Location $previousValue): void;
49 }