/** * Equisoft /plan API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: latest * * * 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 { PlansPlan } from './PlansPlan'; /** * * @export * @interface PlansListPlansResponse */ export interface PlansListPlansResponse { /** * * @type {Array} * @memberof PlansListPlansResponse */ plans: Array; /** * * @type {string} * @memberof PlansListPlansResponse */ createPlanUrl: string; } /** * Check if a given object implements the PlansListPlansResponse interface. */ export declare function instanceOfPlansListPlansResponse(value: object): value is PlansListPlansResponse; export declare function PlansListPlansResponseFromJSON(json: any): PlansListPlansResponse; export declare function PlansListPlansResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlansListPlansResponse; export declare function PlansListPlansResponseToJSON(json: any): PlansListPlansResponse; export declare function PlansListPlansResponseToJSONTyped(value?: PlansListPlansResponse | null, ignoreDiscriminator?: boolean): any;