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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Trending {
    public var en: En {
        En(path: path + "/en")
    }

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

        /// Get Trending En Playlist Endpoint
        ///
        /// Api get request for English-language trending playlist
        /// Returns: PlaylistSchema of global EN 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_en_playlist_endpoint")
        }
    }
}
