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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var countReactedBetaGens: CountReactedBetaGens {
        CountReactedBetaGens(path: "/api/count_reacted_beta_gens")
    }

    public struct CountReactedBetaGens {
        /// Path: `/api/count_reacted_beta_gens`
        public let path: String

        /// Count Reacted Beta Gens
        ///
        /// Count the number of completed clips created by the current user that are marked as beta
        /// and how many of those have user reactions
        public var get: Request<Void> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_count_reacted_beta_gens")
        }
    }
}
