commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
CustomerGroupDraft.php
1 <?php
2 
3 declare(strict_types=1);
10 
14 
15 interface CustomerGroupDraft extends JsonObject
16 {
17  public const FIELD_KEY = 'key';
18  public const FIELD_GROUP_NAME = 'groupName';
19  public const FIELD_CUSTOM = 'custom';
20 
27  public function getKey();
28 
36  public function getGroupName();
37 
44  public function getCustom();
45 
49  public function setKey(?string $key): void;
50 
54  public function setGroupName(?string $groupName): void;
55 
59  public function setCustom(?CustomFieldsDraft $custom): void;
60 }