commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SetPropertyChange.php
1<?php
2
3declare(strict_types=1);
10
13
14interface SetPropertyChange extends Change
15{
16
17 public const FIELD_PREVIOUS_VALUE = 'previousValue';
18 public const FIELD_NEXT_VALUE = 'nextValue';
19 public const FIELD_PATH = 'path';
20
25 public function getType();
26
31 public function getChange();
32
39 public function getPreviousValue();
40
47 public function getNextValue();
48
55 public function getPath();
56
60 public function setChange(?string $change): void;
61
65 public function setPreviousValue( $previousValue): void;
66
70 public function setNextValue( $nextValue): void;
71
75 public function setPath(?string $path): void;
76}