/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 type { ReferralInfo } from './ReferralInfo'; import type { PlanDto } from './PlanDto'; import type { PlansLockedReason } from './PlansLockedReason'; /** * * @export * @interface PlansDto */ export interface PlansDto { /** * The available plans. * @type {Array} * @memberof PlansDto */ plans: Array; /** * The current plan id. * @type {string} * @memberof PlansDto */ currentPlanId?: string | null; /** * The plan owner. * @type {string} * @memberof PlansDto */ planOwner?: string | null; /** * The link to the management portal. * @type {string} * @memberof PlansDto */ portalLink?: string | null; /** * * @type {ReferralInfo} * @memberof PlansDto */ referral?: ReferralInfo; /** * * @type {PlansLockedReason} * @memberof PlansDto */ locked: PlansLockedReason; } /** * Check if a given object implements the PlansDto interface. */ export declare function instanceOfPlansDto(value: any): value is PlansDto; export declare function PlansDtoFromJSON(json: any): PlansDto; export declare function PlansDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): PlansDto; export declare function PlansDtoToJSON(value?: PlansDto | null, _ignoreDiscriminator?: boolean): any;