Interface ISpace

The details of a single Space.

interface ISpace {
    conversationControls?: number;
    createdAt?: string;
    creatorId?: string;
    disallowJoin?: boolean;
    endedAt?: string;
    id: string;
    isEmployeeOnly?: boolean;
    isLocked?: boolean;
    isMuted?: boolean;
    isSpaceAvailableForClipping?: boolean;
    isSpaceAvailableForReplay?: boolean;
    isSubscribed?: boolean;
    mediaKey?: string;
    noIncognito?: boolean;
    participantCount?: number;
    participants?: ISpaceParticipants;
    scheduledStart?: string;
    startedAt?: string;
    state?: string;
    title?: string;
    totalLiveListeners?: number;
    totalReplayWatched?: number;
    updatedAt?: string;
}

Implemented by

Properties

conversationControls?: number

The conversation controls value for the space.

createdAt?: string

The creation date of the space.

creatorId?: string

The id of the user who created the space.

disallowJoin?: boolean

Whether joining the space is disallowed.

endedAt?: string

The end time of the space.

id: string

The rest id of the space.

isEmployeeOnly?: boolean

Whether the space is for employees only.

isLocked?: boolean

Whether the space is locked.

isMuted?: boolean

Whether the space is muted.

isSpaceAvailableForClipping?: boolean

Whether clipping is available for the space.

isSpaceAvailableForReplay?: boolean

Whether replay is available for the space.

isSubscribed?: boolean

Whether the authenticated user is subscribed to the space.

mediaKey?: string

The media key of the space.

noIncognito?: boolean

Whether incognito is disabled for the space.

participantCount?: number

The total participant count reported in the response.

participants?: ISpaceParticipants

The participants information for the space.

scheduledStart?: string

The scheduled start time of the space.

startedAt?: string

The actual start time of the space.

state?: string

The current state of the space.

title?: string

The title of the space.

totalLiveListeners?: number

The total live listeners count for the space.

totalReplayWatched?: number

The total replay watched count for the space.

updatedAt?: string

The time at which the space was last updated.