3 declare(strict_types=1);
78 if (is_null($this->type)) {
80 $data = $this->
raw(self::FIELD_TYPE);
84 $this->type = (string) $data;
96 if (is_null($this->change)) {
98 $data = $this->
raw(self::FIELD_CHANGE);
102 $this->change = (string) $data;
116 if (is_null($this->previousValue)) {
118 $data = $this->
raw(self::FIELD_PREVIOUS_VALUE);
119 if (is_null($data)) {
122 $this->previousValue = (bool) $data;
136 if (is_null($this->nextValue)) {
138 $data = $this->
raw(self::FIELD_NEXT_VALUE);
139 if (is_null($data)) {
142 $this->nextValue = (bool) $data;
156 if (is_null($this->attributeName)) {
158 $data = $this->
raw(self::FIELD_ATTRIBUTE_NAME);
159 if (is_null($data)) {
162 $this->attributeName = (string) $data;
setPreviousValue(?bool $previousValue)
__construct(?string $change=null, ?bool $previousValue=null, ?bool $nextValue=null, ?string $attributeName=null, ?string $type=null)
setNextValue(?bool $nextValue)
setChange(?string $change)
setAttributeName(?string $attributeName)
const DISCRIMINATOR_VALUE