commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
CustomerLabel.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
14 interface CustomerLabel extends Label
15 {
16 
17  public const FIELD_FIRST_NAME = 'firstName';
18  public const FIELD_LAST_NAME = 'lastName';
19  public const FIELD_CUSTOMER_NUMBER = 'customerNumber';
20 
25  public function getType();
26 
33  public function getFirstName();
34 
41  public function getLastName();
42 
49  public function getCustomerNumber();
50 
54  public function setFirstName(?string $firstName): void;
55 
59  public function setLastName(?string $lastName): void;
60 
64  public function setCustomerNumber(?string $customerNumber): void;
65 }