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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Trending {
    public var v2: V2 {
        V2(path: path + "/v2")
    }

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

        /// Get Trending Playlist V2 Endpoint
        ///
        /// Returns: PlaylistSchema of trending v2 ALL playlist
        public var get: Request<GenAPI.PlaylistSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_get_trending_playlist_v2_endpoint")
        }
    }
}
