import { OpenAPIClient, Parameters, UnknownParamsObject, AxiosRequestConfig, OperationResponse } from 'openapi-client-axios'; /* Auto-copied from pricing-tier-client */ /* eslint-disable */ declare namespace Components { namespace Schemas { export interface PricingTier { [name: string]: any; /** * example: * 22 */ id?: string; created_date?: string; updated_date?: string; organization_id?: string; name?: string; /** * Settings */ settings?: { [name: string]: any; }; /** * Settings */ override_settings?: { [name: string]: any; }; created_by?: string; updated_by?: string; is_pure_360?: boolean; } } } declare namespace Paths { namespace GetCurrentPricingTier { namespace Responses { export type $200 = Components.Schemas.PricingTier; } } } interface OperationMethods { /** * getCurrentPricingTier - getCurrentPricingTier * * Get current pricing tier of logged in user */ 'getCurrentPricingTier'( parameters?: Parameters | null, data?: any, config?: AxiosRequestConfig ): OperationResponse } interface PathsDictionary { ['/v2/pricing-tiers/me']: { /** * getCurrentPricingTier - getCurrentPricingTier * * Get current pricing tier of logged in user */ 'get'( parameters?: Parameters | null, data?: any, config?: AxiosRequestConfig ): OperationResponse } } type Client = OpenAPIClient type PricingTier = Components.Schemas.PricingTier; export { type Client as C, type OperationMethods as O, Paths as P, Components as a, type PathsDictionary as b, type PricingTier as c };