interface SpaceBulk {
    _links?: SpaceLinks;
    authorId?: string;
    createdAt?: string;
    currentActiveAlias?: string;
    description?: null | SpaceDescription;
    homepageId?: string;
    icon?: null | SpaceIcon;
    id?: string;
    key?: string;
    name?: string;
    status?: SpaceStatus;
    type?: SpaceType;
}

Hierarchy

  • Record<string, unknown>
    • SpaceBulk

Properties

_links?: SpaceLinks
authorId?: string

The account ID of the user who created this space originally.

createdAt?: string

Date and time when the space was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

currentActiveAlias?: string

Currently active alias for a Confluence space.

description?: null | SpaceDescription
homepageId?: string

ID of the space's homepage.

icon?: null | SpaceIcon
id?: string

ID of the space.

key?: string

Key of the space.

name?: string

Name of the space.

status?: SpaceStatus

The status of the space.

type?: SpaceType

The type of space.