commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
CustomFieldEnumTypeModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'Enum';
27  protected $name;
28 
33  protected $values;
34 
35 
39  public function __construct(
41  ?string $name = null
42  ) {
43  $this->values = $values;
44  $this->name = $name ?? self::DISCRIMINATOR_VALUE;
45  }
46 
51  public function getName()
52  {
53  if (is_null($this->name)) {
55  $data = $this->raw(self::FIELD_NAME);
56  if (is_null($data)) {
57  return null;
58  }
59  $this->name = (string) $data;
60  }
61 
62  return $this->name;
63  }
64 
71  public function getValues()
72  {
73  if (is_null($this->values)) {
75  $data = $this->raw(self::FIELD_VALUES);
76  if (is_null($data)) {
77  return null;
78  }
79  $this->values = CustomFieldEnumValueCollection::fromArray($data);
80  }
81 
82  return $this->values;
83  }
84 
85 
90  {
91  $this->values = $values;
92  }
93 }
__construct(?CustomFieldEnumValueCollection $values=null, ?string $name=null)