SpaceConfiguration

Interface SpaceConfiguration

Defines the configuration options for creating or managing a 3D space.

interface SpaceConfiguration {
    description?: string;
    name?: string;
    retainPolicy: SpaceRetainPolicy;
    tags?: string[];
    tokens?: MemberRoleToSpaceAccessToken;
}

Properties

description?: string

An optional description for the space.

name?: string

An optional name for the space.

retainPolicy: SpaceRetainPolicy

The retain policy for the space.

tags?: string[]

Optional tags associated with the space.

Optional mapping of member roles to their corresponding access tokens for the space. Set when creating a space.