Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
tdw-catalog / tdw_catalog / metadata / number.py
Size: Mime:
from typing import Optional

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


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