/** * 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 SaveCategoryGroup */ export interface SaveCategoryGroup { /** * The name of the category group. The name must be a maximum of 50 characters. * @type {string} * @memberof SaveCategoryGroup */ name: string; } /** * Check if a given object implements the SaveCategoryGroup interface. */ export declare function instanceOfSaveCategoryGroup(value: object): value is SaveCategoryGroup; export declare function SaveCategoryGroupFromJSON(json: any): SaveCategoryGroup; export declare function SaveCategoryGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaveCategoryGroup; export declare function SaveCategoryGroupToJSON(json: any): SaveCategoryGroup; export declare function SaveCategoryGroupToJSONTyped(value?: SaveCategoryGroup | null, ignoreDiscriminator?: boolean): any;