from typing import Optional
from tdw_catalog.team import Team
from tdw_catalog.utils import MetadataFieldType
import tdw_catalog.metadata.field as field
[docs]class Field(field.MetadataField[Team]):
"""
A team who is associated with the data
Attributes
----------
None
"""
def __init__(self, key: str, value: Optional[Team]) -> None:
super().__init__(key, value)
def serialize(self) -> dict:
res = super().serialize()
res["value"] = self.value.id if self.value is not None else None
res["field_type"] = MetadataFieldType.FT_TEAM
return res