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