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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Tags {
    public var recommend: Recommend {
        Recommend(path: path + "/recommend")
    }

    public struct Recommend {
        /// Path: `/api/tags/recommend`
        public let path: String

        /// Recommend Tags
        ///
        /// Returns recommended tags that expand on the input tags
        /// If no input tags are provided, returns 20 random tags
        public func post(_ body: GenAPI.RecommendTagsRequest) -> Request<GenAPI.RecommendTagsResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_tag_recommendations_api_recommend_tags")
        }
    }
}
