commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
UserProvidedIdentifiers.php
1<?php
2
3declare(strict_types=1);
10
14
16{
17 public const FIELD_KEY = 'key';
18 public const FIELD_EXTERNAL_ID = 'externalId';
19 public const FIELD_ORDER_NUMBER = 'orderNumber';
20 public const FIELD_CUSTOMER_NUMBER = 'customerNumber';
21 public const FIELD_SKU = 'sku';
22 public const FIELD_SLUG = 'slug';
23 public const FIELD_CONTAINER_AND_KEY = 'containerAndKey';
24
31 public function getKey();
32
39 public function getExternalId();
40
47 public function getOrderNumber();
48
55 public function getCustomerNumber();
56
63 public function getSku();
64
71 public function getSlug();
72
79 public function getContainerAndKey();
80
84 public function setKey(?string $key): void;
85
89 public function setExternalId(?string $externalId): void;
90
94 public function setOrderNumber(?string $orderNumber): void;
95
99 public function setCustomerNumber(?string $customerNumber): void;
100
104 public function setSku(?string $sku): void;
105
109 public function setSlug(?LocalizedString $slug): void;
110
114 public function setContainerAndKey(?ContainerAndKey $containerAndKey): void;
115}
setContainerAndKey(?ContainerAndKey $containerAndKey)