/** * 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 { SaveCategoryGroup } from './SaveCategoryGroup'; /** * * @export * @interface PostCategoryGroupWrapper */ export interface PostCategoryGroupWrapper { /** * * @type {SaveCategoryGroup} * @memberof PostCategoryGroupWrapper */ category_group: SaveCategoryGroup; } /** * Check if a given object implements the PostCategoryGroupWrapper interface. */ export declare function instanceOfPostCategoryGroupWrapper(value: object): value is PostCategoryGroupWrapper; export declare function PostCategoryGroupWrapperFromJSON(json: any): PostCategoryGroupWrapper; export declare function PostCategoryGroupWrapperFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCategoryGroupWrapper; export declare function PostCategoryGroupWrapperToJSON(json: any): PostCategoryGroupWrapper; export declare function PostCategoryGroupWrapperToJSONTyped(value?: PostCategoryGroupWrapper | null, ignoreDiscriminator?: boolean): any;