Service Clients > @fluidframework/azure-client > AzureMember

AzureMember Interface

Since Azure provides user names for all of its members, we extend the @fluidframework/protocol-definitions#IMember interface to include this service-specific value. It will be returned for all audience members connected to Azure.

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

Signature

export interface AzureMember<T = any> extends IMember

Extends: IMember

Type Parameters

Parameter Modifiers Description
T optional See additionalDetails. Note: must be JSON-serializable. Passing a non-serializable object (e.g. a class) will result in undefined behavior.

Properties

Property Alerts Modifiers Type Description
additionalDetails ALPHA optional T Custom, app-specific user information
userName ALPHA string The user's name

Property Details

additionalDetails (ALPHA)

Custom, app-specific user information

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

Signature

additionalDetails?: T;

userName (ALPHA)

The user’s name

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

Signature

userName: string;