Type Alias User

A user object.

type User = {
    assignedGroups?: AssignedGroups;
    assignedRoles?: AssignedRoles;
    assignedScopes?: AssignedScopes;
    createdAt?: string;
    email?: string;
    id: string;
    inviteExpiry?: number;
    lastUpdatedAt?: string;
    links?: { self: { href: string } };
    locale?: string;
    name: string;
    picture?: string;
    preferredLocale?: string;
    preferredZoneinfo?: string;
    status?: "active" | "invited" | "disabled" | "deleted" | "provisioned";
    subject: string;
    tenantId: string;
    zoneinfo?: string;
}
Index

Properties

assignedGroups?: AssignedGroups

An array of group references.

assignedRoles?: AssignedRoles
assignedScopes?: AssignedScopes
createdAt?: string
email?: string
id: string
inviteExpiry?: number
lastUpdatedAt?: string
links?: { self: { href: string } }

Type Declaration

  • self: { href: string }

    A link to this user.

    • href: string

      URL that defines the resource.

locale?: string
name: string
picture?: string
preferredLocale?: string
preferredZoneinfo?: string
status?: "active" | "invited" | "disabled" | "deleted" | "provisioned"
subject: string
tenantId: string
zoneinfo?: string