ynab
Version:
Official JavaScript client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.76.0
70 lines (69 loc) • 2.17 kB
TypeScript
/**
* 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 | null;
/**
* The total amount of transactions categorized to 'Inflow: Ready to Assign' in the month
* @type {number}
* @memberof MonthSummary
*/
income: number;
/**
* The total amount 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 | null;
/**
* Whether or not the month has been deleted. Deleted months will only be included in delta requests.
* @type {boolean}
* @memberof MonthSummary
*/
deleted: boolean;
}
/**
* 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;