/** * 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 { PlanSummaryResponseData } from './PlanSummaryResponseData'; /** * * @export * @interface PlanSummaryResponse */ export interface PlanSummaryResponse { /** * * @type {PlanSummaryResponseData} * @memberof PlanSummaryResponse */ data: PlanSummaryResponseData; } /** * Check if a given object implements the PlanSummaryResponse interface. */ export declare function instanceOfPlanSummaryResponse(value: object): value is PlanSummaryResponse; export declare function PlanSummaryResponseFromJSON(json: any): PlanSummaryResponse; export declare function PlanSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanSummaryResponse; export declare function PlanSummaryResponseToJSON(json: any): PlanSummaryResponse; export declare function PlanSummaryResponseToJSONTyped(value?: PlanSummaryResponse | null, ignoreDiscriminator?: boolean): any;