from apollo_utils.service.schemas.fields.enum import EnumField from server.constants.playlists.v0.misc import StreamsTypeRequest class StreamsTypeTrackMixin: """Streams type field with 'track' default value""" streams_type = EnumField(StreamsTypeRequest, missing=StreamsTypeRequest.TRACK)