/** * 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 { PlanDetailResponseData } from './PlanDetailResponseData'; /** * * @export * @interface PlanDetailResponse */ export interface PlanDetailResponse { /** * * @type {PlanDetailResponseData} * @memberof PlanDetailResponse */ data: PlanDetailResponseData; } /** * Check if a given object implements the PlanDetailResponse interface. */ export declare function instanceOfPlanDetailResponse(value: object): value is PlanDetailResponse; export declare function PlanDetailResponseFromJSON(json: any): PlanDetailResponse; export declare function PlanDetailResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanDetailResponse; export declare function PlanDetailResponseToJSON(json: any): PlanDetailResponse; export declare function PlanDetailResponseToJSONTyped(value?: PlanDetailResponse | null, ignoreDiscriminator?: boolean): any;