commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
ReviewLabel.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
14 interface ReviewLabel extends Label
15 {
16 
17  public const FIELD_KEY = 'key';
18  public const FIELD_TITLE = 'title';
19 
24  public function getType();
25 
32  public function getKey();
33 
40  public function getTitle();
41 
45  public function setKey(?string $key): void;
46 
50  public function setTitle(?string $title): void;
51 }