/** * 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 Column { /** * Name of the column */ 'name': string; /** * Data type of the column */ 'data_type': string; /** * Determines if the column schema is an aggregate */ 'is_aggregate'?: string | null; /** * Determines if the column schema can be imported */ 'can_import'?: boolean | null; /** * Determines if the table is selected */ 'selected'?: boolean | null; /** * Determines if the table is linked */ 'is_linked_active'?: boolean | 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": "data_type", "baseName": "data_type", "type": "string", "format": "" }, { "name": "is_aggregate", "baseName": "is_aggregate", "type": "string", "format": "" }, { "name": "can_import", "baseName": "can_import", "type": "boolean", "format": "" }, { "name": "selected", "baseName": "selected", "type": "boolean", "format": "" }, { "name": "is_linked_active", "baseName": "is_linked_active", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return Column.attributeTypeMap; } public constructor() { } }