/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface AudioNativeProjectSettingsResponseModel { /** The title of the project. */ title: string; /** The image of the project. */ image: string; /** The author of the project. */ author: string; /** Whether the project is small. */ small: boolean; /** The text color of the project. */ text_color: string; /** The background color of the project. */ background_color: string; /** The sessionization of the project. Specifies for how many minutes to persist the session across page reloads. */ sessionization: number; /** The path of the audio file. */ audio_path?: string; /** The URL of the audio file. */ audio_url?: string; /** Current state of the project */ status?: ElevenLabs.AudioNativeProjectSettingsResponseModelStatus; }