commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
EnumSetFieldModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
20 final class EnumSetFieldModel extends JsonObjectModel implements EnumSetField
21 {
22  public const DISCRIMINATOR_VALUE = 'EnumSet';
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 
71  public function getValue()
72  {
73  if (is_null($this->value)) {
75  $data = $this->raw(self::FIELD_VALUE);
76  if (is_null($data)) {
77  return null;
78  }
79  $this->value = $data;
80  }
81 
82  return $this->value;
83  }
84 
85 
89  public function setValue(?array $value): void
90  {
91  $this->value = $value;
92  }
93 }
__construct(?array $value=null, ?string $type=null)