Source code for tdw_catalog.metadata.text

from typing import Optional

from tdw_catalog.utils import MetadataFieldType
import tdw_catalog.metadata.field as field


[docs]class Field(field.MetadataField[str]): """ Any additional text-based information you want to add to the :class:`.Dataset` Attributes ---------- None """ def __init__(self, key: str, value: Optional[str]) -> None: super().__init__(key, value) def serialize(self) -> dict: res = super().serialize() res["value"] = self.value res["field_type"] = MetadataFieldType.FT_STRING return res