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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var usagePlanFaq: UsagePlanFaq {
        UsagePlanFaq(path: path + "/usage-plan-faq")
    }

    public struct UsagePlanFaq {
        /// Path: `/api/billing/usage-plan-faq`
        public let path: String

        /// Get Usage Plan Faq
        ///
        /// Return the web usage plan FAQ for the current user.
        public var get: Request<GenAPI.UsagePlanFaqResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_usage_plan_faq")
        }
    }
}
