3 declare(strict_types=1);
79 if (is_null($this->type)) {
81 $data = $this->
raw(self::FIELD_TYPE);
85 $this->type = (string) $data;
97 if (is_null($this->change)) {
99 $data = $this->
raw(self::FIELD_CHANGE);
100 if (is_null($data)) {
103 $this->change = (string) $data;
117 if (is_null($this->previousValue)) {
119 $data = $this->
raw(self::FIELD_PREVIOUS_VALUE);
120 if (is_null($data)) {
137 if (is_null($this->nextValue)) {
139 $data = $this->
raw(self::FIELD_NEXT_VALUE);
140 if (is_null($data)) {
160 if (is_null($this->catalogData)) {
162 $data = $this->
raw(self::FIELD_CATALOG_DATA);
163 if (is_null($data)) {
166 $this->catalogData = (string) $data;
setChange(?string $change)
const DISCRIMINATOR_VALUE
setNextValue(?ImageCollection $nextValue)
setPreviousValue(?ImageCollection $previousValue)
setCatalogData(?string $catalogData)
__construct(?string $change=null, ?ImageCollection $previousValue=null, ?ImageCollection $nextValue=null, ?string $catalogData=null, ?string $type=null)