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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Radio {
    public var tags: Tags {
        Tags(path: path + "/tags")
    }

    public struct Tags {
        /// Path: `/api/radio/tags`
        public let path: String

        /// Get Radio Tags
        public var get: Request<GenAPI.RadioTagsSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_get_radio_tags")
        }
    }
}
