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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate {
    public var concat: Concat {
        Concat(path: path + "/concat")
    }

    public struct Concat {
        /// Path: `/api/generate/concat`
        public let path: String

        /// Concat Generations
        public func post(_ body: GenAPI.GenConcatSpec) -> Request<GenAPI.GenerationRequestSimpleSchema> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_generate_api_concat_generations")
        }
    }
}
