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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var refreshRecommendStyles: RefreshRecommendStyles {
        RefreshRecommendStyles(path: "/api/refresh_recommend_styles")
    }

    public struct RefreshRecommendStyles {
        /// Path: `/api/refresh_recommend_styles`
        public let path: String

        /// Refresh Recommend Styles
        public func post(_ body: GenAPI.RecommendStylesSpec) -> Request<GenAPI.RecommendStylesSchema> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_api_refresh_recommend_styles")
        }
    }
}
