from enum import IntEnum class MediaType(IntEnum): UNKNOWN = 0 PDF = 1 PNG = 2 TXT = 3 class DataFormat(IntEnum): RAW = 0 BASED64 = 1