/** * This file was auto-generated by Fern from our API Definition. */ /** * A locator for other documents to be able to reference a specific dictionary and it's version. * This is a pydantic version of PronunciationDictionaryVersionLocatorDBModel. * Required to ensure compat with the rest of the agent data models. */ export interface PydanticPronunciationDictionaryVersionLocator { /** The ID of the pronunciation dictionary */ pronunciation_dictionary_id: string; /** The ID of the version of the pronunciation dictionary */ version_id?: string; }