Packages > @fluid-experimental/odsp-client > OdspMember

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.

WARNING: This API is provided as a beta preview and may change without notice. Use at your own risk.

Signature

export interface OdspMember extends IMember

Extends: IMember

Properties

Property Alerts Type Description
email BETA string The user's email
name BETA string The user's name
userId BETA string The object ID (oid) for the user, unique among each individual user connecting to the session.

Property Details

email (BETA)

The user’s email

WARNING: This API is provided as a beta preview and may change without notice. Use at your own risk.

Signature

email: string;

name (BETA)

The user’s name

WARNING: This API is provided as a beta preview and may change without notice. Use at your own risk.

Signature

name: string;

userId (BETA)

The object ID (oid) for the user, unique among each individual user connecting to the session.

WARNING: This API is provided as a beta preview and may change without notice. Use at your own risk.

Signature

userId: string;