/** * 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 { PlanSettingsResponseData } from './PlanSettingsResponseData'; /** * * @export * @interface PlanSettingsResponse */ export interface PlanSettingsResponse { /** * * @type {PlanSettingsResponseData} * @memberof PlanSettingsResponse */ data: PlanSettingsResponseData; } /** * Check if a given object implements the PlanSettingsResponse interface. */ export declare function instanceOfPlanSettingsResponse(value: object): value is PlanSettingsResponse; export declare function PlanSettingsResponseFromJSON(json: any): PlanSettingsResponse; export declare function PlanSettingsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanSettingsResponse; export declare function PlanSettingsResponseToJSON(json: any): PlanSettingsResponse; export declare function PlanSettingsResponseToJSONTyped(value?: PlanSettingsResponse | null, ignoreDiscriminator?: boolean): any;