commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ChangeLabelChangeModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
18
23{
24
25 public const DISCRIMINATOR_VALUE = 'ChangeLabelChange';
30 protected $type;
31
36 protected $change;
37
42 protected $previousValue;
43
48 protected $nextValue;
49
54 protected $fieldName;
55
60 protected $attributeName;
61
62
66 public function __construct(
67 ?string $change = null,
70 ?string $fieldName = null,
71 ?string $attributeName = null,
72 ?string $type = null
73 ) {
74 $this->change = $change;
75 $this->previousValue = $previousValue;
76 $this->nextValue = $nextValue;
77 $this->fieldName = $fieldName;
78 $this->attributeName = $attributeName;
79 $this->type = $type ?? self::DISCRIMINATOR_VALUE;
80 }
81
86 public function getType()
87 {
88 if (is_null($this->type)) {
90 $data = $this->raw(self::FIELD_TYPE);
91 if (is_null($data)) {
92 return null;
93 }
94 $this->type = (string) $data;
95 }
96
97 return $this->type;
98 }
99
104 public function getChange()
105 {
106 if (is_null($this->change)) {
108 $data = $this->raw(self::FIELD_CHANGE);
109 if (is_null($data)) {
110 return null;
111 }
112 $this->change = (string) $data;
113 }
114
115 return $this->change;
116 }
117
124 public function getPreviousValue()
125 {
126 if (is_null($this->previousValue)) {
128 $data = $this->raw(self::FIELD_PREVIOUS_VALUE);
129 if (is_null($data)) {
130 return null;
131 }
132
133 $this->previousValue = LocalizedStringModel::of($data);
134 }
135
137 }
138
145 public function getNextValue()
146 {
147 if (is_null($this->nextValue)) {
149 $data = $this->raw(self::FIELD_NEXT_VALUE);
150 if (is_null($data)) {
151 return null;
152 }
153
154 $this->nextValue = LocalizedStringModel::of($data);
155 }
156
157 return $this->nextValue;
158 }
159
166 public function getFieldName()
167 {
168 if (is_null($this->fieldName)) {
170 $data = $this->raw(self::FIELD_FIELD_NAME);
171 if (is_null($data)) {
172 return null;
173 }
174 $this->fieldName = (string) $data;
175 }
176
177 return $this->fieldName;
178 }
179
186 public function getAttributeName()
187 {
188 if (is_null($this->attributeName)) {
190 $data = $this->raw(self::FIELD_ATTRIBUTE_NAME);
191 if (is_null($data)) {
192 return null;
193 }
194 $this->attributeName = (string) $data;
195 }
196
198 }
199
200
204 public function setChange(?string $change): void
205 {
206 $this->change = $change;
207 }
208
213 {
214 $this->previousValue = $previousValue;
215 }
216
221 {
222 $this->nextValue = $nextValue;
223 }
224
228 public function setFieldName(?string $fieldName): void
229 {
230 $this->fieldName = $fieldName;
231 }
232
236 public function setAttributeName(?string $attributeName): void
237 {
238 $this->attributeName = $attributeName;
239 }
240
241
242
243}
__construct(?string $change=null, ?LocalizedString $previousValue=null, ?LocalizedString $nextValue=null, ?string $fieldName=null, ?string $attributeName=null, ?string $type=null)