/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * - SUBSCRIPTION_TYPE_UNSPECIFIED: Subscription plan not yet assigned * - SUBSCRIPTION_TYPE_FREE_TRIAL: Workspace is currently in the free trial period * - SUBSCRIPTION_TYPE_SPONSORED_PRO: Workspace is on the sponsored pro plan with full pro features * - SUBSCRIPTION_TYPE_PRO_PLAN: Workspace has an active Pro plan subscription * - SUBSCRIPTION_TYPE_ENTERPRISE_PLAN: Workspace is managed under an Enterprise contract * - SUBSCRIPTION_TYPE_LIGHT_PLAN: Workspace has an active Light plan subscription * @export */ export declare const SubscriptionType: { readonly SubscriptionTypeUnspecified: "SUBSCRIPTION_TYPE_UNSPECIFIED"; readonly SubscriptionTypeFreeTrial: "SUBSCRIPTION_TYPE_FREE_TRIAL"; readonly SubscriptionTypeSponsoredPro: "SUBSCRIPTION_TYPE_SPONSORED_PRO"; readonly SubscriptionTypeProPlan: "SUBSCRIPTION_TYPE_PRO_PLAN"; readonly SubscriptionTypeEnterprisePlan: "SUBSCRIPTION_TYPE_ENTERPRISE_PLAN"; readonly SubscriptionTypeLightPlan: "SUBSCRIPTION_TYPE_LIGHT_PLAN"; }; export type SubscriptionType = typeof SubscriptionType[keyof typeof SubscriptionType]; export declare function instanceOfSubscriptionType(value: any): boolean; export declare function SubscriptionTypeFromJSON(json: any): SubscriptionType; export declare function SubscriptionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionType; export declare function SubscriptionTypeToJSON(value?: SubscriptionType | null): any; export declare function SubscriptionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): SubscriptionType;