/** * 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 { CALLBACKInputMandatory } from '../models/CALLBACKInputMandatory'; import { URLInputMandatory } from '../models/URLInputMandatory'; import { HttpFile } from '../http/http'; /** * Action details includes Type and Configuration for Custom Actions, either Callback or URL is required. When both callback and url are provided, callback would be considered */ export class ActionDetailsInputCreate { 'CALLBACK'?: CALLBACKInputMandatory; 'URL'?: URLInputMandatory; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "CALLBACK", "baseName": "CALLBACK", "type": "CALLBACKInputMandatory", "format": "" }, { "name": "URL", "baseName": "URL", "type": "URLInputMandatory", "format": "" } ]; static getAttributeTypeMap() { return ActionDetailsInputCreate.attributeTypeMap; } public constructor() { } }