Interface ISpace

interface ISpace {
    createdAt: string;
    createdBy: string;
    description: string;
    id: string;
    links: {
        assignments: {
            href: string;
        };
        self: {
            href: string;
        };
    };
    meta: {
        actions: Actions[];
        assignableRoles: string[];
        roles: string[];
    };
    name: string;
    ownerId: string;
    tenantId: string;
    type: string;
    updatedAt: string;
}

Properties

createdAt: string
createdBy: string
description: string
id: string
links: {
    assignments: {
        href: string;
    };
    self: {
        href: string;
    };
}

Type declaration

  • assignments: {
        href: string;
    }
    • href: string
  • self: {
        href: string;
    }
    • href: string
meta: {
    actions: Actions[];
    assignableRoles: string[];
    roles: string[];
}

Type declaration

  • actions: Actions[]
  • assignableRoles: string[]
  • roles: string[]
name: string
ownerId: string
tenantId: string
type: string
updatedAt: string