UNPKG

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

53 lines (52 loc) 2.07 kB
/** * 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 { Category } from './Category'; /** * * @export * @interface CategoryGroupWithCategories */ export interface CategoryGroupWithCategories { /** * * @type {string} * @memberof CategoryGroupWithCategories */ id: string; /** * * @type {string} * @memberof CategoryGroupWithCategories */ name: string; /** * Whether or not the category group is hidden * @type {boolean} * @memberof CategoryGroupWithCategories */ hidden: boolean; /** * Whether or not the category group has been deleted. Deleted category groups will only be included in delta requests. * @type {boolean} * @memberof CategoryGroupWithCategories */ deleted: boolean; /** * Category group categories. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). * @type {Array<Category>} * @memberof CategoryGroupWithCategories */ categories: Array<Category>; } /** * Check if a given object implements the CategoryGroupWithCategories interface. */ export declare function instanceOfCategoryGroupWithCategories(value: object): value is CategoryGroupWithCategories; export declare function CategoryGroupWithCategoriesFromJSON(json: any): CategoryGroupWithCategories; export declare function CategoryGroupWithCategoriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryGroupWithCategories; export declare function CategoryGroupWithCategoriesToJSON(json: any): CategoryGroupWithCategories; export declare function CategoryGroupWithCategoriesToJSONTyped(value?: CategoryGroupWithCategories | null, ignoreDiscriminator?: boolean): any;