// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation
import Get
import URLQueryEncoder

extension Paths.Persona.Vox {
    public var genLyricsSample: GenLyricsSample {
        GenLyricsSample(path: path + "/gen-lyrics-sample")
    }

    public struct GenLyricsSample {
        /// Path: `/api/persona/vox/gen-lyrics-sample`
        public let path: String

        /// Generate Vox Voice Sample
        public func post(_ body: GenAPI.GenerateVoxVoiceSampleParams) -> Request<GenAPI.GenerateVoxVoiceSampleResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_persona_api_generate_vox_voice_sample")
        }
    }
}
