from enum import Enum class SubmissionType(Enum): DOCUMENT = "document" VIDEO = "video" ANIMATION = "animation" PHOTO = "photo"