/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Schema for creating or updating a category * @export * @interface CategoryInput */ export interface CategoryInput { /** * * @type {string} * @memberof CategoryInput */ name: string; /** * * @type {string} * @memberof CategoryInput */ color: string; /** * * @type {number} * @memberof CategoryInput */ parentId?: number | null; /** * * @type {string} * @memberof CategoryInput */ groupId?: string; /** * * @type {boolean} * @memberof CategoryInput */ fixed?: boolean; /** * * @type {boolean} * @memberof CategoryInput */ essential?: boolean; } /** * Check if a given object implements the CategoryInput interface. */ export declare function instanceOfCategoryInput(value: object): value is CategoryInput; export declare function CategoryInputFromJSON(json: any): CategoryInput; export declare function CategoryInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryInput; export declare function CategoryInputToJSON(json: any): CategoryInput; export declare function CategoryInputToJSONTyped(value?: CategoryInput | null, ignoreDiscriminator?: boolean): any;