Source code for pydelfini.delfini_core.models.collection_role
from enum import Enum
[docs]
class CollectionRole(str, Enum):
ADMIN = "ADMIN"
READER = "READER"
VIEWER = "VIEWER"
WRITER = "WRITER"
def __str__(self) -> str:
return str(self.value)