/** * 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 value put operations */ export class VariablePutAssignmentInput { /** * Values of the variable */ 'assigned_values': Array; /** * The unique name of the org */ 'org_identifier'?: string | null; /** * Principal type */ 'principal_type'?: VariablePutAssignmentInputPrincipalTypeEnum | null; /** * Unique ID or name of the principal */ 'principal_identifier'?: string | null; /** * Unique ID of the model */ 'model_identifier'?: string | null; /** * Priority level */ 'priority'?: number | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "assigned_values", "baseName": "assigned_values", "type": "Array", "format": "" }, { "name": "org_identifier", "baseName": "org_identifier", "type": "string", "format": "" }, { "name": "principal_type", "baseName": "principal_type", "type": "VariablePutAssignmentInputPrincipalTypeEnum", "format": "" }, { "name": "principal_identifier", "baseName": "principal_identifier", "type": "string", "format": "" }, { "name": "model_identifier", "baseName": "model_identifier", "type": "string", "format": "" }, { "name": "priority", "baseName": "priority", "type": "number", "format": "int32" } ]; static getAttributeTypeMap() { return VariablePutAssignmentInput.attributeTypeMap; } public constructor() { } } export type VariablePutAssignmentInputPrincipalTypeEnum = "USER" | "USER_GROUP" ;