/** * 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 { ActionDetails } from '../models/ActionDetails'; import { DefaultActionConfig } from '../models/DefaultActionConfig'; import { MetadataAssociationItem } from '../models/MetadataAssociationItem'; import { ObjectIDAndName } from '../models/ObjectIDAndName'; import { HttpFile } from '../http/http'; /** * Custom action details */ export class ResponseCustomAction { 'action_details': ActionDetails; 'default_action_config': DefaultActionConfig; /** * Unique Id of the custom action. */ 'id': string; /** * Metadata objects to assign the the custom action to. */ 'metadata_association'?: Array | null; /** * Unique name of the custom action. */ 'name': string; /** * Unique ID or name of the User groups which are associated with the custom action. */ 'user_groups'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "action_details", "baseName": "action_details", "type": "ActionDetails", "format": "" }, { "name": "default_action_config", "baseName": "default_action_config", "type": "DefaultActionConfig", "format": "" }, { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "metadata_association", "baseName": "metadata_association", "type": "Array", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "user_groups", "baseName": "user_groups", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return ResponseCustomAction.attributeTypeMap; } public constructor() { } }