commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
CustomFieldReferenceTypeModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'Reference';
27  protected $name;
28 
33  protected $referenceTypeId;
34 
35 
39  public function __construct(
40  ?string $referenceTypeId = null,
41  ?string $name = null
42  ) {
43  $this->referenceTypeId = $referenceTypeId;
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 getReferenceTypeId()
72  {
73  if (is_null($this->referenceTypeId)) {
75  $data = $this->raw(self::FIELD_REFERENCE_TYPE_ID);
76  if (is_null($data)) {
77  return null;
78  }
79  $this->referenceTypeId = (string) $data;
80  }
81 
83  }
84 
85 
89  public function setReferenceTypeId(?string $referenceTypeId): void
90  {
91  $this->referenceTypeId = $referenceTypeId;
92  }
93 }
__construct(?string $referenceTypeId=null, ?string $name=null)