RulesetVariablesManager Interface
Presentation ruleset variables registry.
Methods
| Name | Description | |
|---|---|---|
| getBool(variableId: string): boolean | Retrieves booleanvariable value. | |
| getId64(variableId: string): string | Retrieves Id64Stringvariable value. | |
| getId64s(variableId: string): string[] | Retrieves Id64String[]variable value. | |
| getInt(variableId: string): number | Retrieves numbervariable value. | |
| getInts(variableId: string): number[] | Retrieves number[]variable value. | |
| getString(variableId: string): string | Retrieves stringvariable value. | |
| getValue(variableId: string, type: VariableValueTypes): VariableValue | Gets a value of the specified type and ID | |
| setBool(variableId: string, value: boolean): void | Sets booleanvariable value | |
| setId64(variableId: string, value: string): void | Sets Id64Stringvariable value | |
| setId64s(variableId: string, value: string[]): void | Sets Id64String[]variable value | |
| setInt(variableId: string, value: number): void | Sets numbervariable value | |
| setInts(variableId: string, value: number[]): void | Sets number[]variable value | |
| setString(variableId: string, value: string): void | Sets stringvariable value | |
| setValue(variableId: string, type: VariableValueTypes, value: VariableValue): void | Sets a value of the specified type | |
| unset(variableId: string): void | Unsets variable with given id. | 
Defined in
Last Updated: 24 June, 2025
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.