commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
AddPriceChange.php
1 <?php
2 
3 declare(strict_types=1);
10 
14 
15 interface AddPriceChange extends Change
16 {
17 
18  public const FIELD_NEXT_VALUE = 'nextValue';
19  public const FIELD_CATALOG_DATA = 'catalogData';
20  public const FIELD_PRICE_ID = 'priceId';
21 
26  public function getType();
27 
32  public function getChange();
33 
40  public function getNextValue();
41 
51  public function getCatalogData();
52 
59  public function getPriceId();
60 
64  public function setChange(?string $change): void;
65 
69  public function setNextValue(?Price $nextValue): void;
70 
74  public function setCatalogData(?string $catalogData): void;
75 
79  public function setPriceId(?string $priceId): void;
80 }