/** * 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 { MonthDetailBase } from './MonthDetailBase'; import type { PayeeLocation } from './PayeeLocation'; import type { CategoryBase } from './CategoryBase'; import type { CurrencyFormat } from './CurrencyFormat'; import type { DateFormat } from './DateFormat'; import type { SubTransactionBase } from './SubTransactionBase'; import type { ScheduledSubTransactionBase } from './ScheduledSubTransactionBase'; import type { ScheduledTransactionSummaryBase } from './ScheduledTransactionSummaryBase'; import type { TransactionSummaryBase } from './TransactionSummaryBase'; import type { Payee } from './Payee'; import type { AccountBase } from './AccountBase'; import type { CategoryGroup } from './CategoryGroup'; /** * * @export * @interface PlanDetail */ export interface PlanDetail { /** * * @type {string} * @memberof PlanDetail */ id: string; /** * * @type {string} * @memberof PlanDetail */ name: string; /** * The last time any changes were made to the plan from either a web or mobile client * @type {string} * @memberof PlanDetail */ last_modified_on?: string; /** * The earliest plan month * @type {string} * @memberof PlanDetail */ first_month?: string; /** * The latest plan month * @type {string} * @memberof PlanDetail */ last_month?: string; /** * * @type {DateFormat} * @memberof PlanDetail */ date_format?: DateFormat; /** * * @type {CurrencyFormat} * @memberof PlanDetail */ currency_format?: CurrencyFormat; /** * * @type {Array} * @memberof PlanDetail */ accounts?: Array; /** * * @type {Array} * @memberof PlanDetail */ payees?: Array; /** * * @type {Array} * @memberof PlanDetail */ payee_locations?: Array; /** * * @type {Array} * @memberof PlanDetail */ category_groups?: Array; /** * * @type {Array} * @memberof PlanDetail */ categories?: Array; /** * * @type {Array} * @memberof PlanDetail */ months?: Array; /** * * @type {Array} * @memberof PlanDetail */ transactions?: Array; /** * * @type {Array} * @memberof PlanDetail */ subtransactions?: Array; /** * * @type {Array} * @memberof PlanDetail */ scheduled_transactions?: Array; /** * * @type {Array} * @memberof PlanDetail */ scheduled_subtransactions?: Array; } /** * Check if a given object implements the PlanDetail interface. */ export declare function instanceOfPlanDetail(value: object): value is PlanDetail; export declare function PlanDetailFromJSON(json: any): PlanDetail; export declare function PlanDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanDetail; export declare function PlanDetailToJSON(json: any): PlanDetail; export declare function PlanDetailToJSONTyped(value?: PlanDetail | null, ignoreDiscriminator?: boolean): any;