Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
meta$
1get meta$(): Observable<Record<string, unknown> | undefined>
Observable of custom metadata for this participant.
1get meta(): Record<string, unknown> | undefined
Custom metadata for this participant, or undefined if not set.
undefined
1participant.meta$.subscribe((meta) => {2 console.log('meta:', meta);3});