/** * 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'; /** * Input for variable details in search */ export class VariableDetailInput { /** * Unique ID or name of the variable */ 'identifier'?: string | null; /** * Type of variable */ 'type'?: VariableDetailInputTypeEnum | null; /** * A pattern to match case-insensitive name of the variable. User % for a wildcard match */ 'name_pattern'?: string | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "identifier", "baseName": "identifier", "type": "string", "format": "" }, { "name": "type", "baseName": "type", "type": "VariableDetailInputTypeEnum", "format": "" }, { "name": "name_pattern", "baseName": "name_pattern", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return VariableDetailInput.attributeTypeMap; } public constructor() { } } export type VariableDetailInputTypeEnum = "CONNECTION_PROPERTY" | "TABLE_MAPPING" | "CONNECTION_PROPERTY_PER_PRINCIPAL" | "FORMULA_VARIABLE" | "USER_PROPERTY" ;