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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var recs: Recs {
        Recs(path: "/api/recs")
    }

    public struct Recs {
        /// Path: `/api/recs`
        public let path: String

        /// Get Recommendations Endpoint
        public var get: Request<[GenAPI.GeneratedClipSchema]> {
            Request(path: path, method: "GET", id: "studio_api_bots_recommendation_api_get_recommendations_endpoint")
        }
    }
}
