/** * 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 ValidateCommunicationChannelRequest { /** * Type of communication channel to validate (e.g., WEBHOOK). */ 'channel_type': ValidateCommunicationChannelRequestChannelTypeEnum; /** * Unique identifier or name for the communication channel. */ 'channel_identifier': string; /** * Event type to validate for this channel. */ 'event_type': ValidateCommunicationChannelRequestEventTypeEnum; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "channel_type", "baseName": "channel_type", "type": "ValidateCommunicationChannelRequestChannelTypeEnum", "format": "" }, { "name": "channel_identifier", "baseName": "channel_identifier", "type": "string", "format": "" }, { "name": "event_type", "baseName": "event_type", "type": "ValidateCommunicationChannelRequestEventTypeEnum", "format": "" } ]; static getAttributeTypeMap() { return ValidateCommunicationChannelRequest.attributeTypeMap; } public constructor() { } } export type ValidateCommunicationChannelRequestChannelTypeEnum = "WEBHOOK" ; export type ValidateCommunicationChannelRequestEventTypeEnum = "LIVEBOARD_SCHEDULE" ;