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
46 lines (45 loc) • 1.53 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 CategoryGroup
*/
export interface CategoryGroup {
/**
*
* @type {string}
* @memberof CategoryGroup
*/
id: string;
/**
*
* @type {string}
* @memberof CategoryGroup
*/
name: string;
/**
* Whether or not the category group is hidden
* @type {boolean}
* @memberof CategoryGroup
*/
hidden: boolean;
/**
* Whether or not the category group has been deleted. Deleted category groups will only be included in delta requests.
* @type {boolean}
* @memberof CategoryGroup
*/
deleted: boolean;
}
/**
* Check if a given object implements the CategoryGroup interface.
*/
export declare function instanceOfCategoryGroup(value: object): value is CategoryGroup;
export declare function CategoryGroupFromJSON(json: any): CategoryGroup;
export declare function CategoryGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryGroup;
export declare function CategoryGroupToJSON(json: any): CategoryGroup;
export declare function CategoryGroupToJSONTyped(value?: CategoryGroup | null, ignoreDiscriminator?: boolean): any;