Source code for pydelfini.delfini_core.models.collection_access_level
from enum import Enum
[docs]
class CollectionAccessLevel(str, Enum):
CONFIDENTIAL = "confidential"
CONTROLLED = "controlled"
PRIVATE = "private"
PUBLIC = "public"
def __str__(self) -> str:
return str(self.value)