# This file was auto-generated by Fern from our API Definition.

import typing_extensions


class AudioOutputDataParams(typing_extensions.TypedDict):
    content_type: str
    """
    MIME type of the audio content (e.g., 'audio/mp3', 'audio/wav')
    """

    audio: str
    """
    Base64-encoded audio data ready for playback or download
    """

    request_id: typing_extensions.NotRequired[str]
    """
    Unique identifier for the request
    """
