commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
LocalizedEnumSetFieldModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22 public const DISCRIMINATOR_VALUE = 'LocalizedEnumSet';
27 protected $type;
28
33 protected $value;
34
35
39 public function __construct(
40 ?array $value = null,
41 ?string $type = null
42 ) {
43 $this->value = $value;
44 $this->type = $type ?? self::DISCRIMINATOR_VALUE;
45 }
46
53 public function getType()
54 {
55 if (is_null($this->type)) {
57 $data = $this->raw(self::FIELD_TYPE);
58 if (is_null($data)) {
59 return null;
60 }
61 $this->type = (string) $data;
62 }
63
64 return $this->type;
65 }
66
75 public function getValue()
76 {
77 if (is_null($this->value)) {
79 $data = $this->raw(self::FIELD_VALUE);
80 if (is_null($data)) {
81 return null;
82 }
83 $this->value = $data;
84 }
85
86 return $this->value;
87 }
88
89
93 public function setValue(?array $value): void
94 {
95 $this->value = $value;
96 }
97}