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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithGenId {
    public var incrementSkipCount: IncrementSkipCount {
        IncrementSkipCount(path: path + "/increment_skip_count")
    }

    public struct IncrementSkipCount {
        /// Path: `/api/gen/{gen_id}/increment_skip_count`
        public let path: String

        /// Increment Skip Count
        ///
        /// Increment skip count on UserReaction (and associated Generatedclip).
        public func post(_ body: GenAPI.TimeOfSkipSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_gen_api_increment_skip_count")
        }
    }
}
