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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var usagePlans: UsagePlans {
        UsagePlans(path: path + "/usage-plans")
    }

    public struct UsagePlans {
        /// Path: `/api/billing/usage-plans`
        public let path: String

        /// Get Usage Plans
        public var get: Request<GenAPI.UsagePlansSchemaReponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_usage_plans")
        }
    }
}
