/** * 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) */ /** * * @export * @interface MonthSummary */ export interface MonthSummary { /** * * @type {string} * @memberof MonthSummary */ month: string; /** * * @type {string} * @memberof MonthSummary */ note?: string; /** * The total amount of transactions categorized to 'Inflow: Ready to Assign' in the month * @type {number} * @memberof MonthSummary */ income: number; /** * The total amount assigned (budgeted) in the month * @type {number} * @memberof MonthSummary */ budgeted: number; /** * The total amount of transactions in the month, excluding those categorized to 'Inflow: Ready to Assign' * @type {number} * @memberof MonthSummary */ activity: number; /** * The available amount for 'Ready to Assign' * @type {number} * @memberof MonthSummary */ to_be_budgeted: number; /** * The Age of Money as of the month * @type {number} * @memberof MonthSummary */ age_of_money?: number; /** * Whether or not the month has been deleted. Deleted months will only be included in delta requests. * @type {boolean} * @memberof MonthSummary */ deleted: boolean; /** * The total income formatted in the plan's currency format * @type {string} * @memberof MonthSummary */ income_formatted?: string; /** * The total income as a decimal currency amount * @type {number} * @memberof MonthSummary */ income_currency?: number; /** * The total amount assigned formatted in the plan's currency format * @type {string} * @memberof MonthSummary */ budgeted_formatted?: string; /** * The total amount assigned as a decimal currency amount * @type {number} * @memberof MonthSummary */ budgeted_currency?: number; /** * The total activity amount formatted in the plan's currency format * @type {string} * @memberof MonthSummary */ activity_formatted?: string; /** * The total activity amount as a decimal currency amount * @type {number} * @memberof MonthSummary */ activity_currency?: number; /** * The available amount for 'Ready to Assign' formatted in the plan's currency format * @type {string} * @memberof MonthSummary */ to_be_budgeted_formatted?: string; /** * The available amount for 'Ready to Assign' as a decimal currency amount * @type {number} * @memberof MonthSummary */ to_be_budgeted_currency?: number; } /** * Check if a given object implements the MonthSummary interface. */ export declare function instanceOfMonthSummary(value: object): value is MonthSummary; export declare function MonthSummaryFromJSON(json: any): MonthSummary; export declare function MonthSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): MonthSummary; export declare function MonthSummaryToJSON(json: any): MonthSummary; export declare function MonthSummaryToJSONTyped(value?: MonthSummary | null, ignoreDiscriminator?: boolean): any;