commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SetAssetKeyChange.php
1<?php
2
3declare(strict_types=1);
10
14
15interface SetAssetKeyChange extends Change
16{
17
18 public const FIELD_PREVIOUS_VALUE = 'previousValue';
19 public const FIELD_NEXT_VALUE = 'nextValue';
20 public const FIELD_ASSET = 'asset';
21
26 public function getChange();
27
32 public function getType();
33
40 public function getPreviousValue();
41
48 public function getNextValue();
49
56 public function getAsset();
57
61 public function setChange(?string $change): void;
62
66 public function setPreviousValue(?string $previousValue): void;
67
71 public function setNextValue(?string $nextValue): void;
72
76 public function setAsset(?AssetChangeValue $asset): void;
77}