/** * YNAB API Endpoints * Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com * * Generated by: OpenAPI Generator (https://openapi-generator.tech) */ import type { PlanDetail } from './PlanDetail'; /** * * @export * @interface PlanDetailResponseData */ export interface PlanDetailResponseData { /** * * @type {PlanDetail} * @memberof PlanDetailResponseData */ plan: PlanDetail; /** * The knowledge of the server * @type {number} * @memberof PlanDetailResponseData */ server_knowledge: number; } /** * Check if a given object implements the PlanDetailResponseData interface. */ export declare function instanceOfPlanDetailResponseData(value: object): value is PlanDetailResponseData; export declare function PlanDetailResponseDataFromJSON(json: any): PlanDetailResponseData; export declare function PlanDetailResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanDetailResponseData; export declare function PlanDetailResponseDataToJSON(json: any): PlanDetailResponseData; export declare function PlanDetailResponseDataToJSONTyped(value?: PlanDetailResponseData | null, ignoreDiscriminator?: boolean): any;