commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
CustomObjectKeyReferenceModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22 public const DISCRIMINATOR_VALUE = 'key-value-document';
27 protected $key;
28
33 protected $typeId;
34
39 protected $container;
40
41
45 public function __construct(
46 ?string $key = null,
47 ?string $container = null,
48 ?string $typeId = null
49 ) {
50 $this->key = $key;
51 $this->container = $container;
52 $this->typeId = $typeId ?? self::DISCRIMINATOR_VALUE;
53 }
54
59 public function getKey()
60 {
61 if (is_null($this->key)) {
63 $data = $this->raw(self::FIELD_KEY);
64 if (is_null($data)) {
65 return null;
66 }
67 $this->key = (string) $data;
68 }
69
70 return $this->key;
71 }
72
79 public function getTypeId()
80 {
81 if (is_null($this->typeId)) {
83 $data = $this->raw(self::FIELD_TYPE_ID);
84 if (is_null($data)) {
85 return null;
86 }
87 $this->typeId = (string) $data;
88 }
89
90 return $this->typeId;
91 }
92
97 public function getContainer()
98 {
99 if (is_null($this->container)) {
101 $data = $this->raw(self::FIELD_CONTAINER);
102 if (is_null($data)) {
103 return null;
104 }
105 $this->container = (string) $data;
106 }
107
108 return $this->container;
109 }
110
111
115 public function setKey(?string $key): void
116 {
117 $this->key = $key;
118 }
119
123 public function setContainer(?string $container): void
124 {
125 $this->container = $container;
126 }
127}
__construct(?string $key=null, ?string $container=null, ?string $typeId=null)