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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var defaultCurrency: DefaultCurrency {
        DefaultCurrency(path: path + "/default-currency")
    }

    public struct DefaultCurrency {
        /// Path: `/api/billing/default-currency`
        public let path: String

        /// Get Default Currency
        ///
        /// Return the default currency for the user based on their location.
        public var get: Request<GenAPI.DefaultCurrencySchemaResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_default_currency")
        }
    }
}
