commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
CustomFieldExpandedValue.php
1<?php
2
3declare(strict_types=1);
10
14
16{
17
18 public const FIELD_NAME = 'name';
19 public const FIELD_VALUE = 'value';
20 public const FIELD_LABEL = 'label';
21
28 public function getName();
29
36 public function getValue();
37
44 public function getLabel();
45
49 public function setName(?string $name): void;
50
54 public function setValue( $value): void;
55
59 public function setLabel(?LocalizedString $label): void;
60}