Interface: SessionInterface
Defined in: node_modules/@3dverse/livelink.core/dist/sources/SessionInterface.d.ts:7
Session interface.
Accessors
gateway_url
Get Signature
get gateway_url(): string | null;
Defined in: node_modules/@3dverse/livelink.core/dist/sources/SessionInterface.d.ts:11
Must return the gateway URL or null if the session has not been created yet on the server.
Returns
string | null
session_key
Get Signature
get session_key(): string | null;
Defined in: node_modules/@3dverse/livelink.core/dist/sources/SessionInterface.d.ts:15
Must return the session key or null if the session has not been created yet on the server.
Returns
string | null
client_id
Set Signature
set client_id(client_id: UUID | null): void;
Defined in: node_modules/@3dverse/livelink.core/dist/sources/SessionInterface.d.ts:19
Will be called to set the current client unique identifier in UUID format.
Parameters
| Parameter | Type |
|---|---|
client_id | UUID | null |
Returns
void