userVariables$

View as MarkdownOpen in Claude
1get userVariables$(): Observable<Record<string, unknown>>

Observable of custom user variables associated with the call.

userVariables

1get userVariables(): Record<string, unknown>
2set userVariables(variables): void

a copy of the current custom user variables of the call.

Parameters

variables
Record<string, unknown>Required

User-variable key/value pairs to merge into the call.

Merge current custom user variables of the call.

Examples

1call.userVariables$.subscribe((userVariables) => {
2 console.log('userVariables:', userVariables);
3});