interface UpdateSpace {
    description?: Models.SpaceDescriptionCreate;
    homepage?: {
        id: string;
    };
    name?: string;
    spaceKey: string;
    status?: string;
    type?: string;
}

Hierarchy (view full)

Properties

homepage?: {
    id: string;
}

The page to set as the homepage of the space.

Type declaration

  • id: string

    The ID of the page.

name?: string

The name of the space.

spaceKey: string

The key of the space to update.

status?: string

The updated status for this space.

type?: string

The updated type for this space.

Generated using TypeDoc v0.25.12