Type Alias Group

represents a Group document

type Group = {
    assignedRoles?: AssignedRoles;
    createdAt: string;
    createdBy?: string;
    description?: string;
    id: string;
    lastUpdatedAt: string;
    links: { self: { href: string } };
    name: string;
    providerType?: "idp" | "custom";
    status: "active" | "disabled";
    tenantId: string;
    updatedBy?: string;
}
Index

Properties

assignedRoles?: AssignedRoles

An array of role references. Visibility dependant on access level. Must have access to roles to view other users' assigned roles.

createdAt: string
createdBy?: string
description?: string
id: string
lastUpdatedAt: string
links: { self: { href: string } }
name: string
providerType?: "idp" | "custom"
status: "active" | "disabled"
tenantId: string
updatedBy?: string