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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var usagePlanDescriptions: UsagePlanDescriptions {
        UsagePlanDescriptions(path: path + "/usage-plan-descriptions")
    }

    public struct UsagePlanDescriptions {
        /// Path: `/api/billing/usage-plan-descriptions`
        public let path: String

        /// Get Usage Plan Descriptions
        ///
        /// Return the web usage plan descriptions for the current user.
        public var get: Request<GenAPI.UsagePlanDescriptionsResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_usage_plan_descriptions")
        }
    }
}
