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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithGenId {
    public var incrementActionCount: IncrementActionCount {
        IncrementActionCount(path: path + "/increment_action_count")
    }

    public struct IncrementActionCount {
        /// Path: `/api/gen/{gen_id}/increment_action_count`
        public let path: String

        /// Increment Action Count
        ///
        /// Increment action count
        public func post(_ body: GenAPI.ActionSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_gen_api_increment_action_count")
        }
    }
}
