/** * 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 { AnswerContextInput } from '../models/AnswerContextInput'; import { DataSourceContextInput } from '../models/DataSourceContextInput'; import { LBContextInput } from '../models/LBContextInput'; import { HttpFile } from '../http/http'; /** * Context for the conversation. */ export class CreateAgentConversationRequestMetadataContext { /** * Type of the context. */ 'type'?: CreateAgentConversationRequestMetadataContextTypeEnum | null; 'answer_context'?: AnswerContextInput; 'liveboard_context'?: LBContextInput; 'data_source_context'?: DataSourceContextInput; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "type", "baseName": "type", "type": "CreateAgentConversationRequestMetadataContextTypeEnum", "format": "" }, { "name": "answer_context", "baseName": "answer_context", "type": "AnswerContextInput", "format": "" }, { "name": "liveboard_context", "baseName": "liveboard_context", "type": "LBContextInput", "format": "" }, { "name": "data_source_context", "baseName": "data_source_context", "type": "DataSourceContextInput", "format": "" } ]; static getAttributeTypeMap() { return CreateAgentConversationRequestMetadataContext.attributeTypeMap; } public constructor() { } } export type CreateAgentConversationRequestMetadataContextTypeEnum = "answer" | "liveboard" | "data_source" ;