import type * as core from "../../../../../core"; /** * @example * {} */ export interface BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost { /** Either txt or HTML input file containing the article content. HTML should be formatted as follows '<html><body><div><p>Your content</p><h5>More of your content</h5><p>Some more of your content</p></div></body></html>' */ file?: core.file.Uploadable | undefined; /** Whether to auto convert the project to audio or not. */ autoConvert?: boolean; /** Whether to auto publish the new project snapshot after it's converted. */ autoPublish?: boolean; }