interface Space {
    _expandable: {
        description?: string;
        history?: string;
        homepage?: string;
        icon?: string;
        lookAndFeel?: string;
        metadata?: string;
        operations?: string;
        permissions?: string;
        settings?: string;
        theme?: string;
    };
    _links: GenericLinks;
    description?: {
        plain?: Models.SpaceDescription;
        view?: Models.SpaceDescription;
    };
    history?: {
        createdDate: string;
    };
    homepage?: Models.Content;
    icon?: Models.Icon;
    id: number;
    key: string;
    lookAndFeel?: Models.LookAndFeel;
    metadata?: {
        labels: Models.LabelArray;
    };
    name: string;
    operations?: Models.OperationCheckResult[];
    permissions?: Models.SpacePermission[];
    settings?: Models.SpaceSettings;
    status: string;
    theme?: Models.Theme;
    type: string;
}

Properties

_expandable: {
    description?: string;
    history?: string;
    homepage?: string;
    icon?: string;
    lookAndFeel?: string;
    metadata?: string;
    operations?: string;
    permissions?: string;
    settings?: string;
    theme?: string;
}

Type declaration

  • Optional description?: string
  • Optional history?: string
  • Optional homepage?: string
  • Optional icon?: string
  • Optional lookAndFeel?: string
  • Optional metadata?: string
  • Optional operations?: string
  • Optional permissions?: string
  • Optional settings?: string
  • Optional theme?: string
_links: GenericLinks
description?: {
    plain?: Models.SpaceDescription;
    view?: Models.SpaceDescription;
}

Type declaration

history?: {
    createdDate: string;
}

Type declaration

  • createdDate: string
homepage?: Models.Content
icon?: Models.Icon
id: number
key: string
lookAndFeel?: Models.LookAndFeel
metadata?: {
    labels: Models.LabelArray;
}

Type declaration

name: string
permissions?: Models.SpacePermission[]
status: string
theme?: Models.Theme
type: string

Generated using TypeDoc v0.25.12