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.
Participant.meta$
Participant
1get meta(): Record<string, unknown> | undefined
Custom metadata for this participant, or undefined if not set.
undefined
Participant.meta
meta
1selfParticipant.meta$.subscribe((meta) => {2 console.log('meta:', meta);3});