commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
LocalizedEnumValue.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
14 interface LocalizedEnumValue extends JsonObject
15 {
16  public const FIELD_KEY = 'key';
17  public const FIELD_LABEL = 'label';
18 
23  public function getKey();
24 
36  public function getLabel();
37 
41  public function setKey(?string $key): void;
42 
46  public function setLabel(?LocalizedString $label): void;
47 }