/** * 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 { NewCategory } from './NewCategory'; /** * * @export * @interface PostCategoryWrapper */ export interface PostCategoryWrapper { /** * * @type {NewCategory} * @memberof PostCategoryWrapper */ category: NewCategory; } /** * Check if a given object implements the PostCategoryWrapper interface. */ export declare function instanceOfPostCategoryWrapper(value: object): value is PostCategoryWrapper; export declare function PostCategoryWrapperFromJSON(json: any): PostCategoryWrapper; export declare function PostCategoryWrapperFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCategoryWrapper; export declare function PostCategoryWrapperToJSON(json: any): PostCategoryWrapper; export declare function PostCategoryWrapperToJSONTyped(value?: PostCategoryWrapper | null, ignoreDiscriminator?: boolean): any;