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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var ipAddress: IpAddress {
        IpAddress(path: "/api/ip-address")
    }

    public struct IpAddress {
        /// Path: `/api/ip-address`
        public let path: String

        /// Get Ip Address
        public var get: Request<GenAPI.IpAddressResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_api_get_ip_address")
        }
    }
}
