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