commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
LocalizedEnumValueModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
26  protected $key;
27 
32  protected $label;
33 
34 
38  public function __construct(
39  ?string $key = null,
40  ?LocalizedString $label = null
41  ) {
42  $this->key = $key;
43  $this->label = $label;
44  }
45 
50  public function getKey()
51  {
52  if (is_null($this->key)) {
54  $data = $this->raw(self::FIELD_KEY);
55  if (is_null($data)) {
56  return null;
57  }
58  $this->key = (string) $data;
59  }
60 
61  return $this->key;
62  }
63 
75  public function getLabel()
76  {
77  if (is_null($this->label)) {
79  $data = $this->raw(self::FIELD_LABEL);
80  if (is_null($data)) {
81  return null;
82  }
83 
84  $this->label = LocalizedStringModel::of($data);
85  }
86 
87  return $this->label;
88  }
89 
90 
94  public function setKey(?string $key): void
95  {
96  $this->key = $key;
97  }
98 
102  public function setLabel(?LocalizedString $label): void
103  {
104  $this->label = $label;
105  }
106 }
static of($data=null)
Definition: MapperMap.php:45
__construct(?string $key=null, ?LocalizedString $label=null)