/** * 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. */ /** * * @export * @interface PlansPlan */ export interface PlansPlan { /** * * @type {number} * @memberof PlansPlan */ id: number; /** * * @type {PlansPlanTypeEnum} * @memberof PlansPlan */ type: PlansPlanTypeEnum; /** * * @type {string} * @memberof PlansPlan */ modifiedDate: string; /** * * @type {string} * @memberof PlansPlan */ clientDisplayName: string; /** * * @type {string} * @memberof PlansPlan */ spouseDisplayName?: string | null; /** * * @type {PlansPlanStatusEnum} * @memberof PlansPlan */ status: PlansPlanStatusEnum; /** * * @type {string} * @memberof PlansPlan */ statusDate: string | null; /** * * @type {string} * @memberof PlansPlan */ url: string; } /** * @export */ export declare const PlansPlanTypeEnum: { readonly INDIVIDUAL: "INDIVIDUAL"; readonly SPOUSAL: "SPOUSAL"; readonly unknown_default_open_api: "11184809"; }; export type PlansPlanTypeEnum = typeof PlansPlanTypeEnum[keyof typeof PlansPlanTypeEnum]; /** * @export */ export declare const PlansPlanStatusEnum: { readonly PARTIAL: "PARTIAL"; readonly COMPLETED: "COMPLETED"; readonly EXPIRED: "EXPIRED"; readonly unknown_default_open_api: "11184809"; }; export type PlansPlanStatusEnum = typeof PlansPlanStatusEnum[keyof typeof PlansPlanStatusEnum]; /** * Check if a given object implements the PlansPlan interface. */ export declare function instanceOfPlansPlan(value: object): value is PlansPlan; export declare function PlansPlanFromJSON(json: any): PlansPlan; export declare function PlansPlanFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlansPlan; export declare function PlansPlanToJSON(json: any): PlansPlan; export declare function PlansPlanToJSONTyped(value?: PlansPlan | null, ignoreDiscriminator?: boolean): any;