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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var listBetaGens: ListBetaGens {
        ListBetaGens(path: "/api/list_beta_gens")
    }

    public struct ListBetaGens {
        /// Path: `/api/list_beta_gens`
        public let path: String

        /// List Beta Gens
        ///
        /// Fetch and return a list of clips created by the current user that are marked as beta
        public func post(_ body: GenAPI.ListBetaGensSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_api_list_beta_gens")
        }
    }
}
