meta$

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

Observable of custom metadata for this participant.

Inherited from

Participant.meta$

meta

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

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

Inherited from

Participant.meta

Examples

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