/** * 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 ColumnSecurityRuleGroupOperation { /** * Type of operation to be performed on the groups */ 'operation': ColumnSecurityRuleGroupOperationOperationEnum; /** * Array of group identifiers (name or GUID) on which the operation will be performed */ 'group_identifiers': Array; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "operation", "baseName": "operation", "type": "ColumnSecurityRuleGroupOperationOperationEnum", "format": "" }, { "name": "group_identifiers", "baseName": "group_identifiers", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return ColumnSecurityRuleGroupOperation.attributeTypeMap; } public constructor() { } } export type ColumnSecurityRuleGroupOperationOperationEnum = "ADD" | "REMOVE" | "REPLACE" ;