import type * as core from "../../../../../core"; import type * as ElevenLabs from "../../../../index"; /** * @example * { * name: "name" * } */ export interface BodyEditVoiceV1VoicesVoiceIdEditPost { /** The name that identifies this voice. This will be displayed in the dropdown of the website. */ name: string; /** Audio files to add to the voice */ files?: core.file.Uploadable[] | undefined; /** If set will remove background noise for voice samples using our audio isolation model. If the samples do not include background noise, it can make the quality worse. */ removeBackgroundNoise?: boolean; /** A description of the voice. */ description?: string; /** Labels for the voice. Keys can be language, accent, gender, or age. */ labels?: ElevenLabs.VoicesUpdateRequestLabels; }