/** * 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. */ /** * * @export * @interface Tag */ export interface Tag { /** * * @type {string} * @memberof Tag */ name?: string; } /** * Check if a given object implements the Tag interface. */ export declare function instanceOfTag(value: object): value is Tag; export declare function TagFromJSON(json: any): Tag; export declare function TagFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tag; export declare function TagToJSON(json: any): Tag; export declare function TagToJSONTyped(value?: Tag | null, ignoreDiscriminator?: boolean): any;