commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SetAssetCustomFieldChange.php
1<?php
2
3declare(strict_types=1);
10
14
16{
17
18 public const FIELD_PREVIOUS_VALUE = 'previousValue';
19 public const FIELD_NEXT_VALUE = 'nextValue';
20 public const FIELD_NAME = 'name';
21 public const FIELD_CUSTOM_TYPE_ID = 'customTypeId';
22 public const FIELD_ASSET = 'asset';
23
28 public function getChange();
29
34 public function getType();
35
42 public function getPreviousValue();
43
50 public function getNextValue();
51
58 public function getName();
59
66 public function getCustomTypeId();
67
74 public function getAsset();
75
79 public function setChange(?string $change): void;
80
84 public function setPreviousValue( $previousValue): void;
85
89 public function setNextValue( $nextValue): void;
90
94 public function setName(?string $name): void;
95
99 public function setCustomTypeId(?string $customTypeId): void;
100
104 public function setAsset(?AssetChangeValue $asset): void;
105}