/** * 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 { VariableUpdateAssignmentInput } from '../models/VariableUpdateAssignmentInput'; import { VariableUpdateScopeInput } from '../models/VariableUpdateScopeInput'; import { HttpFile } from '../http/http'; export class UpdateVariableValuesRequest { /** * Array of variable assignment objects specifying the variable identifier, values to assign, and the operation type (ADD, REMOVE, REPLACE, or RESET) to perform on each variable. */ 'variable_assignment': Array; /** * Array of scope objects defining where the variable values apply, including organization context, optional principal constraints (user or group), model reference for formula variables, and priority for conflict resolution. */ 'variable_value_scope': Array; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "variable_assignment", "baseName": "variable_assignment", "type": "Array", "format": "" }, { "name": "variable_value_scope", "baseName": "variable_value_scope", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return UpdateVariableValuesRequest.attributeTypeMap; } public constructor() { } }