IClient Interface
Represents a client connected to a Fluid service, including associated user details, permissions, and connection mode.
Signature
export interface IClient
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| details | IClientDetails | IClient connection / environment metadata. | |
| mode | ConnectionMode | A client's connection mode - either view-only ("read") or allowing edits ("write"). | |
| permission | string[] | ||
| scopes | string[] | Enumerates actions allowed for the client connection. | |
| timestamp | optional | number | The time the client connected to the service. |
| user | IUser | The user information associated with this client connection. |