/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 */ 'id': string; /** * * @type {string} * @memberof Tag */ 'userId': string; /** * * @type {string} * @memberof Tag */ 'name': string; /** * * @type {string} * @memberof Tag */ 'description': string | null; /** * * @type {string} * @memberof Tag */ 'createdAt'?: string | null; /** * * @type {string} * @memberof Tag */ 'modifiedAt'?: string | null; } /** * 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;