/** * 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 { CurrencyFormat } from './CurrencyFormat'; import type { DateFormat } from './DateFormat'; /** * * @export * @interface PlanSettings */ export interface PlanSettings { /** * * @type {DateFormat} * @memberof PlanSettings */ date_format: DateFormat; /** * * @type {CurrencyFormat} * @memberof PlanSettings */ currency_format: CurrencyFormat; } /** * Check if a given object implements the PlanSettings interface. */ export declare function instanceOfPlanSettings(value: object): value is PlanSettings; export declare function PlanSettingsFromJSON(json: any): PlanSettings; export declare function PlanSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanSettings; export declare function PlanSettingsToJSON(json: any): PlanSettings; export declare function PlanSettingsToJSONTyped(value?: PlanSettings | null, ignoreDiscriminator?: boolean): any;