meta$

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

Observable of custom metadata for this participant.

meta

1get meta(): Record<string, unknown> | undefined

Custom metadata for this participant, or undefined if not set.

Examples

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