/** * 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 filtering variable values by scope in search operations */ export class ValueScopeInput { /** * The unique name of the org */ 'org_identifier'?: string | null; /** * Type of principal to filter by. Use USER to filter values assigned to specific users, or USER_GROUP to filter values assigned to groups. */ 'principal_type'?: ValueScopeInputPrincipalTypeEnum | null; /** * Unique ID or name of the principal */ 'principal_identifier'?: string | null; /** * Unique ID or name of the model to filter by. Applicable only for FORMULA_VARIABLE type. */ 'model_identifier'?: string | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "org_identifier", "baseName": "org_identifier", "type": "string", "format": "" }, { "name": "principal_type", "baseName": "principal_type", "type": "ValueScopeInputPrincipalTypeEnum", "format": "" }, { "name": "principal_identifier", "baseName": "principal_identifier", "type": "string", "format": "" }, { "name": "model_identifier", "baseName": "model_identifier", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return ValueScopeInput.attributeTypeMap; } public constructor() { } } export type ValueScopeInputPrincipalTypeEnum = "USER" | "USER_GROUP" ;