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