/** * Athena API * REST API for the Athena system * * 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 { /** * Unique identifier * @type {string} * @memberof Tag */ id: string; /** * Tag name * @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;