OdspMember Interface
Since ODSP provides user names and email for all of its members, we extend the IMember interface to include this service-specific value. It will be returned for all audience members connected.
To use, import via @fluidframework/odsp-client/beta
.
For more information about our API support guarantees, see here.
Signature
export interface OdspMember extends IMember
Extends: IMember
Properties
Property | Alerts | Type | Description |
---|---|---|---|
Beta |
string | The user's email | |
id | Beta |
string | The object ID (oid) for the user, unique among each individual user connecting to the session. |
name | Beta |
string | The user's name |
Property Details
email
The user's email
To use, import via @fluidframework/odsp-client/beta
.
For more information about our API support guarantees, see here.
Signature
email: string;
Type: string
id
The object ID (oid) for the user, unique among each individual user connecting to the session.
To use, import via @fluidframework/odsp-client/beta
.
For more information about our API support guarantees, see here.
Signature
id: string;
Type: string
name
The user's name
To use, import via @fluidframework/odsp-client/beta
.
For more information about our API support guarantees, see here.
Signature
name: string;
Type: string