/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface AddPronunciationDictionaryResponseModel { /** The ID of the created pronunciation dictionary. */ id: string; /** The name of the created pronunciation dictionary. */ name: string; /** The user ID of the creator of the pronunciation dictionary. */ created_by: string; /** The creation time of the pronunciation dictionary in Unix timestamp. */ creation_time_unix: number; /** The ID of the created pronunciation dictionary version. */ version_id: string; /** The number of rules in the version of the pronunciation dictionary. */ version_rules_num: number; /** The description of the pronunciation dictionary. */ description?: string; /** The permission on the resource of the pronunciation dictionary. */ permission_on_resource?: ElevenLabs.AddPronunciationDictionaryResponseModelPermissionOnResource; }