/** * 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 { ColumnSecurityRule } from '../models/ColumnSecurityRule'; import { HttpFile } from '../http/http'; export class ColumnSecurityRuleResponse { /** * GUID of the table for which the column security rules are fetched */ 'table_guid'?: string | null; /** * Object ID of the table for which the column security rules are fetched */ 'obj_id'?: string | null; /** * Array containing column security rule objects */ 'column_security_rules'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "table_guid", "baseName": "table_guid", "type": "string", "format": "" }, { "name": "obj_id", "baseName": "obj_id", "type": "string", "format": "" }, { "name": "column_security_rules", "baseName": "column_security_rules", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return ColumnSecurityRuleResponse.attributeTypeMap; } public constructor() { } }