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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen {
    public var incrementActionCounts: IncrementActionCounts {
        IncrementActionCounts(path: path + "/increment_action_counts")
    }

    public struct IncrementActionCounts {
        /// Path: `/api/gen/increment_action_counts`
        public let path: String

        /// Increment Action Counts
        ///
        /// Increment action count for multiple clips
        public func post(_ body: GenAPI.MultiGenActionSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_gen_api_increment_action_counts")
        }
    }
}
