/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; export class Tag { 'name': string; 'id': string; 'color'?: string | null; 'deleted'?: boolean | null; 'hidden'?: boolean | null; 'external'?: boolean | null; 'deprecated'?: boolean | null; 'creation_time_in_millis'?: number | null; 'modification_time_in_millis'?: number | null; 'author_id'?: string | null; 'modifier_id'?: string | null; 'owner_id'?: string | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "color", "baseName": "color", "type": "string", "format": "" }, { "name": "deleted", "baseName": "deleted", "type": "boolean", "format": "" }, { "name": "hidden", "baseName": "hidden", "type": "boolean", "format": "" }, { "name": "external", "baseName": "external", "type": "boolean", "format": "" }, { "name": "deprecated", "baseName": "deprecated", "type": "boolean", "format": "" }, { "name": "creation_time_in_millis", "baseName": "creation_time_in_millis", "type": "number", "format": "float" }, { "name": "modification_time_in_millis", "baseName": "modification_time_in_millis", "type": "number", "format": "float" }, { "name": "author_id", "baseName": "author_id", "type": "string", "format": "" }, { "name": "modifier_id", "baseName": "modifier_id", "type": "string", "format": "" }, { "name": "owner_id", "baseName": "owner_id", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return Tag.attributeTypeMap; } public constructor() { } }