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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate {
    public var beta: Beta {
        Beta(path: path + "/beta")
    }

    public struct Beta {
        /// Path: `/api/generate/beta`
        public let path: String

        /// Run Generation Beta
        ///
        /// The entrypoint for beta web clients
        public func post(_ body: GenAPI.GenParamsSpec) -> Request<GenAPI.GenerationRequestSchema> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_generate_api_run_generation_beta")
        }
    }
}
