Source code for pydelfini.delfini_core.models.data_dictionary_source_item

from enum import Enum


[docs] class DataDictionarySourceItem(str, Enum): CDE = "cde" EXTERNAL = "external" REFERENCEDINTHISCOLLECTION = "referencedInThisCollection" SYSTEMSTANDARD = "systemStandard" THISCOLLECTION = "thisCollection" def __str__(self) -> str: return str(self.value)