3 declare(strict_types=1);
69 if (is_null($this->code)) {
71 $data = $this->
raw(self::FIELD_CODE);
75 $this->code = (string) $data;
87 if (is_null($this->message)) {
89 $data = $this->
raw(self::FIELD_MESSAGE);
93 $this->message = (string) $data;
107 if (is_null($this->currentState)) {
109 $data = $this->
raw(self::FIELD_CURRENT_STATE);
110 if (is_null($data)) {
113 $this->currentState = (string) $data;
127 if (is_null($this->newState)) {
129 $data = $this->
raw(self::FIELD_NEW_STATE);
130 if (is_null($data)) {
133 $this->newState = (string) $data;