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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var userConfig: UserConfig {
        UserConfig(path: "/api/user_config")
    }

    public struct UserConfig {
        /// Path: `/api/user_config`
        public let path: String

        /// Get User Config
        public var get: Request<GenAPI.UserConfigSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_get_user_config")
        }
    }
}
