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 = (string) $data;
136 if (is_null($this->nextValue)) {
138 $data = $this->
raw(self::FIELD_NEXT_VALUE);
139 if (is_null($data)) {
142 $this->nextValue = (string) $data;
156 if (is_null($this->buyerComment)) {
158 $data = $this->
raw(self::FIELD_BUYER_COMMENT);
159 if (is_null($data)) {
162 $this->buyerComment = (string) $data;
setPreviousValue(?string $previousValue)
__construct(?string $change=null, ?string $previousValue=null, ?string $nextValue=null, ?string $buyerComment=null, ?string $type=null)
setNextValue(?string $nextValue)
setChange(?string $change)
const DISCRIMINATOR_VALUE
setBuyerComment(?string $buyerComment)