/** * 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 MonthSummaryBase */ export interface MonthSummaryBase { /** * * @type {string} * @memberof MonthSummaryBase */ month: string; /** * * @type {string} * @memberof MonthSummaryBase */ note?: string | null; /** * The total amount of transactions categorized to 'Inflow: Ready to Assign' in the month * @type {number} * @memberof MonthSummaryBase */ income: number; /** * The total amount assigned (budgeted) in the month * @type {number} * @memberof MonthSummaryBase */ budgeted: number; /** * The total amount of transactions in the month, excluding those categorized to 'Inflow: Ready to Assign' * @type {number} * @memberof MonthSummaryBase */ activity: number; /** * The available amount for 'Ready to Assign' * @type {number} * @memberof MonthSummaryBase */ to_be_budgeted: number; /** * The Age of Money as of the month * @type {number} * @memberof MonthSummaryBase */ age_of_money?: number | null; /** * Whether or not the month has been deleted. Deleted months will only be included in delta requests. * @type {boolean} * @memberof MonthSummaryBase */ deleted: boolean; } /** * Check if a given object implements the MonthSummaryBase interface. */ export declare function instanceOfMonthSummaryBase(value: object): value is MonthSummaryBase; export declare function MonthSummaryBaseFromJSON(json: any): MonthSummaryBase; export declare function MonthSummaryBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MonthSummaryBase; export declare function MonthSummaryBaseToJSON(json: any): MonthSummaryBase; export declare function MonthSummaryBaseToJSONTyped(value?: MonthSummaryBase | null, ignoreDiscriminator?: boolean): any;