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
29 lines (28 loc) • 1.25 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)
*/
import type { SaveCategory } from './SaveCategory';
/**
*
* @export
* @interface PatchCategoryWrapper
*/
export interface PatchCategoryWrapper {
/**
*
* @type {SaveCategory}
* @memberof PatchCategoryWrapper
*/
category: SaveCategory;
}
/**
* Check if a given object implements the PatchCategoryWrapper interface.
*/
export declare function instanceOfPatchCategoryWrapper(value: object): value is PatchCategoryWrapper;
export declare function PatchCategoryWrapperFromJSON(json: any): PatchCategoryWrapper;
export declare function PatchCategoryWrapperFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchCategoryWrapper;
export declare function PatchCategoryWrapperToJSON(json: any): PatchCategoryWrapper;
export declare function PatchCategoryWrapperToJSONTyped(value?: PatchCategoryWrapper | null, ignoreDiscriminator?: boolean): any;