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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate {
    public var upsampleTags: UpsampleTags {
        UpsampleTags(path: path + "/upsample-tags")
    }

    public struct UpsampleTags {
        /// Path: `/api/generate/upsample-tags`
        public let path: String

        /// Upsample Tags
        public func post(_ body: GenAPI.UpsampleTagsRequest) -> Request<GenAPI.UpsampleTagsResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_generate_api_upsample_tags")
        }
    }
}
