Type Alias SpaceCreate

type SpaceCreate = {
    description?: string;
    name: string;
    type: "shared" | "managed" | "data";
}
Index

Properties

description?: string

The description of the space. Personal spaces do not have a description.

name: string

The name of the space. Personal spaces do not have a name.

type: "shared" | "managed" | "data"

The type of space such as shared, managed, and so on.