commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
RemoveImageChange.php
1<?php
2
3declare(strict_types=1);
10
14
15interface RemoveImageChange extends Change
16{
17
18 public const FIELD_PREVIOUS_VALUE = 'previousValue';
19 public const FIELD_NEXT_VALUE = 'nextValue';
20 public const FIELD_CATALOG_DATA = 'catalogData';
21
26 public function getType();
27
32 public function getChange();
33
40 public function getPreviousValue();
41
48 public function getNextValue();
49
59 public function getCatalogData();
60
64 public function setChange(?string $change): void;
65
69 public function setPreviousValue(?ImageCollection $previousValue): void;
70
74 public function setNextValue(?ImageCollection $nextValue): void;
75
79 public function setCatalogData(?string $catalogData): void;
80}
setPreviousValue(?ImageCollection $previousValue)