Skip to main content

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

NameTypeDescription
session_idUUIDThe unique identifier of the session.
scene_idUUIDThe unique identifier of the scene the session is running in.
is_transient_sessionbooleanWhether the session is a transient session. Transient sessions are temporary and changes are not saved.

Type declaration

NameTypeDescription
scene_name?stringThe name of the scene the session is running in.
folder_id?UUIDThe unique identifier of the 3dverse console folder the scene is in.
max_users?numberThe maximum number of users that can join the session.
created_by?UUIDThe unique identifier of the user that created the session.
created_at?DateThe date and time the session was created.
country_code?stringThe country code of the 3dverse server the session is running on.
continent_code?stringThe continent code of the 3dverse server the session is running on.
clients?ClientInfo[]The information about the clients connected to the session.