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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var usagePlanConfig: UsagePlanConfig {
        UsagePlanConfig(path: path + "/usage-plan-config")
    }

    public struct UsagePlanConfig {
        /// Path: `/api/billing/usage-plan-config`
        public let path: String

        /// Get Usage Plan Config
        ///
        /// Returns the usage plan configuration which only includes the plans that the user is eligible for.
        public var get: Request<Void> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_usage_plan_config")
        }
    }
}
