interface Space {
    _expandable: {
        description?: string;
        history?: string;
        homepage?: string;
        icon?: string;
        identifiers?: string;
        lookAndFeel?: string;
        metadata?: string;
        operations?: string;
        permissions?: string;
        settings?: string;
        theme?: string;
    } & {
        [key: string]: unknown;
    };
    _links: GenericLinks;
    alias?: string;
    description?: {
        _expandable?: {
            plain?: string;
            view?: string;
        } & {
            [key: string]: unknown;
        };
        plain?: SpaceDescriptionV1;
        view?: SpaceDescriptionV1;
    } & {
        [key: string]: unknown;
    };
    history?: {
        createdBy?: null | UserV1;
        createdDate: string;
    } & {
        [key: string]: unknown;
    };
    homepage?: null | Content;
    icon?: null | IconV1;
    id?: number;
    key: string;
    lookAndFeel?: LookAndFeel;
    metadata?: {
        _expandable?: {
            [key: string]: unknown;
        };
        labels?: LabelArray;
    } & {
        [key: string]: unknown;
    };
    name: string;
    operations?: OperationCheckResult[];
    permissions?: SpacePermissionV1[];
    settings?: null | SpaceSettings;
    status: string;
    theme?: Theme;
    type: string;
}

Hierarchy

  • Record<string, unknown>
    • Space

Properties

_expandable: {
    description?: string;
    history?: string;
    homepage?: string;
    icon?: string;
    identifiers?: string;
    lookAndFeel?: string;
    metadata?: string;
    operations?: string;
    permissions?: string;
    settings?: string;
    theme?: string;
} & {
    [key: string]: unknown;
}
_links: GenericLinks
alias?: string
description?: {
    _expandable?: {
        plain?: string;
        view?: string;
    } & {
        [key: string]: unknown;
    };
    plain?: SpaceDescriptionV1;
    view?: SpaceDescriptionV1;
} & {
    [key: string]: unknown;
}
history?: {
    createdBy?: null | UserV1;
    createdDate: string;
} & {
    [key: string]: unknown;
}
homepage?: null | Content

Base object for all content types.

icon?: null | IconV1

This object represents an icon. If used as a profilePicture, this may be returned as null, depending on the user's privacy setting.

id?: number
key: string
lookAndFeel?: LookAndFeel
metadata?: {
    _expandable?: {
        [key: string]: unknown;
    };
    labels?: LabelArray;
} & {
    [key: string]: unknown;
}
name: string
operations?: OperationCheckResult[]
permissions?: SpacePermissionV1[]
settings?: null | SpaceSettings
status: string
theme?: Theme
type: string