/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { UsageType, WorkspaceSubscription } from '../models/index'; export type GetSubscriptionRequest = Omit<{ baseId?: string; type?: Array; }, 'baseId'>; /** * */ export declare class SubscriptionsApi extends runtime.BaseAPI { /** * Retrieve the current workspace subscription details including plan, usage, and entitlements. * Get subscription */ getRaw(requestParameters?: GetSubscriptionRequest, initOverrides?: runtime.InitOverrides | runtime.InitOverrideFunction): Promise>; /** * Retrieve the current workspace subscription details including plan, usage, and entitlements. * Get subscription */ get(requestParameters?: GetSubscriptionRequest, initOverrides?: runtime.InitOverrides | runtime.InitOverrideFunction): Promise; }