Source code for tdw_catalog.metadata.number

from typing import Optional

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


[docs]class Field(field.MetadataField[int]): """ Track numbers associated with the :class:`.Dataset`, like total number of allowed users Attributes ---------- None """ def __init__(self, key: str, value: Optional[int]) -> None: super().__init__(key, value) def serialize(self) -> dict: res = super().serialize() res["value"] = str(self.value) res["field_type"] = MetadataFieldType.FT_INTEGER return res