/** * This file was auto-generated by Fern from our API Definition. */ import * as fs from "fs"; /** * @example * { * name: "name" * } */ export interface BodyEditVoiceV1VoicesVoiceIdEditPost { /** The name that identifies this voice. This will be displayed in the dropdown of the website. */ name: string; files?: File[] | fs.ReadStream[] | Blob[] | 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. */ remove_background_noise?: boolean; /** A description of the voice. */ description?: string; /** Serialized labels dictionary for the voice. */ labels?: string; }