SessionInfo
type SessionInfo = {
session_id: UUID;
scene_id: UUID;
is_transient_session: boolean;
} & {
scene_name: string;
folder_id: UUID;
max_users: number;
created_by: UUID;
created_at: Date;
country_code: string;
continent_code: string;
clients: ClientInfo[];
};
Defined in: livelink.js/sources/session/SessionInfo.ts:9
Information about a session.
Type declaration
Name | Type | Description |
---|---|---|
session_id | UUID | The unique identifier of the session. |
scene_id | UUID | The unique identifier of the scene the session is running in. |
is_transient_session | boolean | Whether the session is a transient session. Transient sessions are temporary and changes are not saved. |
Type declaration
Name | Type | Description |
---|---|---|
scene_name ? | string | The name of the scene the session is running in. |
folder_id ? | UUID | The unique identifier of the 3dverse console folder the scene is in. |
max_users ? | number | The maximum number of users that can join the session. |
created_by ? | UUID | The unique identifier of the user that created the session. |
created_at ? | Date | The date and time the session was created. |
country_code ? | string | The country code of the 3dverse server the session is running on. |
continent_code ? | string | The continent code of the 3dverse server the session is running on. |
clients ? | ClientInfo [] | The information about the clients connected to the session. |