/** * 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 { UserObject } from '../models/UserObject'; import { HttpFile } from '../http/http'; /** * Objects to apply the Runtime_Parameters. */ export class RuntimeParameters { /** * The name of the parameter. */ 'name': string; /** * The array of values. */ 'values': Array; /** * Flag to persist the parameters. Version: 9.12.0.cl or later */ 'persist'?: boolean | null; /** * Object to apply the runtime parameter. */ 'objects'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "values", "baseName": "values", "type": "Array", "format": "" }, { "name": "persist", "baseName": "persist", "type": "boolean", "format": "" }, { "name": "objects", "baseName": "objects", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return RuntimeParameters.attributeTypeMap; } public constructor() { } }