Source code for tdw_catalog.metadata.link
from typing import Optional
from tdw_catalog.utils import MetadataFieldType
import tdw_catalog.metadata.field as field
[docs]class Field(field.MetadataField[str]):
"""
Any links, urls, or websites associated with the data
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_URL
return res