from enum import Enum class AdFormatGroup(str, Enum): FEED = "FEED" OTHER = "OTHER" STORY = "STORY" def __str__(self) -> str: return str(self.value)