Source code for pydelfini.delfini_core.models.collections_get_collections_version

from enum import Enum


[docs] class CollectionsGetCollectionsVersion(str, Enum): ALL = "all" LATEST = "latest" LIVE = "live" def __str__(self) -> str: return str(self.value)