index = $index; $this->alias = $alias; $this->type = $type; $this->id = $id; $this->tag = $tag; $this->content = $content; } /** * @since 30.0.0 */ public function jsonSerialize(): array { return [ "index" => $this->index, "content" => $this->content, "type" => $this->type->value, "alias" => $this->alias, "id" => $this->id, "tag" => $this->tag, ]; } }