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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Edit.Stem {
    public var generate: Generate {
        Generate(path: path + "/generate")
    }

    public struct Generate {
        /// Path: `/api/edit/stem/generate`
        public let path: String

        /// Stem Generated Clip
        public func post(_ body: GenAPI.GenerateStemSpec) -> Request<GenAPI.StemActionRequestSchema> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_editing_api_stem_generated_clip")
        }
    }
}
