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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithGenId {
    public var incrementPlayCount: IncrementPlayCount {
        IncrementPlayCount(path: path + "/increment_play_count")
    }

    public struct IncrementPlayCount {
        /// Path: `/api/gen/{gen_id}/increment_play_count`
        public let path: String

        /// Increment Play Count
        ///
        /// Increment play count on UserReaction (and associated Generatedclip).
        public var post: Request<Void> {
            Request(path: path, method: "POST", id: "studio_api_bots_gen_api_increment_play_count")
        }
    }
}
