/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface LibraryVoiceResponse { /** The public owner id of the voice. */ public_owner_id: string; /** The id of the voice. */ voice_id: string; /** The date the voice was added to the library in Unix time. */ date_unix: number; /** The name of the voice. */ name: string; /** The accent of the voice. */ accent: string; /** The gender of the voice. */ gender: string; /** The age of the voice. */ age: string; /** The descriptive of the voice. */ descriptive: string; /** The use case of the voice. */ use_case: string; /** The category of the voice. */ category: ElevenLabs.LibraryVoiceResponseModelCategory; /** The language of the voice. */ language?: string; /** The locale of the voice. */ locale?: string; /** The description of the voice. */ description?: string; /** The preview URL of the voice. */ preview_url?: string; /** The usage character count of the voice in the last year. */ usage_character_count_1y: number; /** The usage character count of the voice in the last 7 days. */ usage_character_count_7d: number; /** The play API usage character count of the voice in the last year. */ play_api_usage_character_count_1y: number; /** The number of times the voice has been cloned. */ cloned_by_count: number; /** The rate of the voice. */ rate?: number; /** Whether free users are allowed to use the voice. */ free_users_allowed: boolean; /** Whether live moderation is enabled for the voice. */ live_moderation_enabled: boolean; /** Whether the voice is featured. */ featured: boolean; /** The verified languages of the voice. */ verified_languages?: ElevenLabs.VerifiedVoiceLanguageResponseModel[]; /** The notice period of the voice. */ notice_period?: number; /** The Instagram username of the voice. */ instagram_username?: string; /** The Twitter username of the voice. */ twitter_username?: string; /** The YouTube username of the voice. */ youtube_username?: string; /** The TikTok username of the voice. */ tiktok_username?: string; /** The image URL of the voice. */ image_url?: string; /** Whether the voice was added by the user. */ is_added_by_user?: boolean; }