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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var webSubscriptionFlag: WebSubscriptionFlag {
        WebSubscriptionFlag(path: path + "/web-subscription-flag")
    }

    public struct WebSubscriptionFlag {
        /// Path: `/api/billing/web-subscription-flag`
        public let path: String

        /// Get Web Subscription Feature Flag
        public var get: Request<GenAPI.WebSubscriptionFeatureFlagResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_web_subscription_feature_flag")
        }
    }
}
