import type * as core from "../../../../../core"; import type * as ElevenLabs from "../../../../index"; /** * @example * { * name: "name" * } */ export interface BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost { /** The name of the pronunciation dictionary, used for identification only. */ name: string; /** A lexicon .pls file which we will use to initialize the project with. */ file?: core.file.Uploadable | undefined; /** A description of the pronunciation dictionary, used for identification only. */ description?: string; /** Should be one of 'admin', 'editor' or 'viewer'. If not provided, defaults to no access. */ workspaceAccess?: ElevenLabs.PronunciationDictionariesCreateFromFileRequestWorkspaceAccess; }