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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Persona.Vox {
    public var create: Create {
        Create(path: path + "/create")
    }

    public struct Create {
        /// Path: `/api/persona/vox/create`
        public let path: String

        /// Create Vox Persona
        public func post(_ body: GenAPI.GenerateVoxPersonaParams) -> Request<GenAPI.GenerateVoxPersonaResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_persona_api_create_vox_persona")
        }
    }
}
