meta$

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

Observable of custom metadata for this participant.

Inherited from

Participant.meta$

meta

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

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

Inherited from

Participant.meta

Examples

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