Interface IAssignment

interface IAssignment {
    assigneeId: string;
    createdAt: string;
    createdBy: string;
    id: string;
    links: {
        self: {
            href: string;
        };
        space: {
            href: string;
        };
    };
    roles: string[];
    spaceId: string;
    tenantId: string;
    type: "user" | "group";
    updatedAt: string;
}

Properties

assigneeId: string
createdAt: string
createdBy: string
id: string
links: {
    self: {
        href: string;
    };
    space: {
        href: string;
    };
}

Type declaration

  • self: {
        href: string;
    }
    • href: string
  • space: {
        href: string;
    }
    • href: string
roles: string[]
spaceId: string
tenantId: string
type: "user" | "group"
updatedAt: string