name = $name; $this->version = $version; $this->schemaUrl = $schemaUrl; $this->attributes = $attributes; } public function getName(): string { return $this->name; } public function getVersion(): ?string { return $this->version; } public function getSchemaUrl(): ?string { return $this->schemaUrl; } public function getAttributes(): AttributesInterface { return $this->attributes; } }