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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var trending: Trending {
        Trending(path: "/api/trending")
    }

    public struct Trending {
        /// Path: `/api/trending`
        public let path: String

        /// Get Trending Playlist Endpoint
        ///
        /// Api get request for Homepage
        /// Returns: PlaylistSchema of global trending playlist (id hardcoded in constants.py)
        public var get: Request<GenAPI.PlaylistSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_get_trending_playlist_endpoint")
        }
    }
}
