type = new NullEventAttributeType(); $this->value = new NullEventAttributeValue(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'event' => $this->event, 'type' => $this->type, 'value' => $this->value, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }