The properties of a space that can be updated.

interface SpaceUpdate {
    description?: null | SpaceDescriptionCreate;
    homepage?: null | {
        [key: string]: unknown;
    };
    name?: null | string;
    status?: null | string;
    type?: string;
}

Hierarchy

  • Record<string, unknown>
    • SpaceUpdate

Properties

description?: null | SpaceDescriptionCreate

The description of the new/updated space. Note, only the 'plain' representation can be used for the description when creating or updating a space.

homepage?: null | {
    [key: string]: unknown;
}

The updated homepage for this space

name?: null | string

The updated name of the space.

status?: null | string

The updated status for this space.

type?: string

The updated type for this space.