/** * 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 { CategoryBase } from './CategoryBase'; /** * * @export * @interface MonthDetailBase */ export interface MonthDetailBase { /** * * @type {string} * @memberof MonthDetailBase */ month: string; /** * * @type {string} * @memberof MonthDetailBase */ note?: string; /** * The total amount of transactions categorized to 'Inflow: Ready to Assign' in the month * @type {number} * @memberof MonthDetailBase */ income: number; /** * The total amount assigned (budgeted) in the month * @type {number} * @memberof MonthDetailBase */ budgeted: number; /** * The total amount of transactions in the month, excluding those categorized to 'Inflow: Ready to Assign' * @type {number} * @memberof MonthDetailBase */ activity: number; /** * The available amount for 'Ready to Assign' * @type {number} * @memberof MonthDetailBase */ to_be_budgeted: number; /** * The Age of Money as of the month * @type {number} * @memberof MonthDetailBase */ age_of_money?: number; /** * Whether or not the month has been deleted. Deleted months will only be included in delta requests. * @type {boolean} * @memberof MonthDetailBase */ deleted: boolean; /** * The plan month categories. Amounts (budgeted, activity, balance, etc.) are specific to the {month} parameter specified. * @type {Array} * @memberof MonthDetailBase */ categories: Array; } /** * Check if a given object implements the MonthDetailBase interface. */ export declare function instanceOfMonthDetailBase(value: object): value is MonthDetailBase; export declare function MonthDetailBaseFromJSON(json: any): MonthDetailBase; export declare function MonthDetailBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MonthDetailBase; export declare function MonthDetailBaseToJSON(json: any): MonthDetailBase; export declare function MonthDetailBaseToJSONTyped(value?: MonthDetailBase | null, ignoreDiscriminator?: boolean): any;