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

import Foundation
import Get
import URLQueryEncoder

extension Paths.VideoGen.Higgsfield {
    public var startConcatenation: StartConcatenation {
        StartConcatenation(path: path + "/start_concatenation")
    }

    public struct StartConcatenation {
        /// Path: `/api/video_gen/higgsfield/start_concatenation`
        public let path: String

        /// Start Concatenation
        ///
        /// Start video concatenation for a workspace
        public func post(videoWorkspaceId: String, _ body: [String]) -> Request<Void> {
            Request(path: path, method: "POST", query: [("video_workspace_id", videoWorkspaceId)], body: body, id: "studio_api_video_gen_higgsfield_api_start_concatenation")
        }
    }
}
