File

src/app/core/user/user-admin-service/user-account.ts

Description

User Role object. also see https://www.keycloak.org/docs-api/19.0.3/rest-api/index.html#_rolerepresentation

Index

Properties

Properties

description
description: string
Type : string
Optional
id
id: string
Type : string
name
name: string
Type : string
export interface UserAccount {
  id: string;

  email?: string;

  /**
   * The entity id (in the business logic database) of the record that is linked as this user account's "profile".
   * --> see `CurrentUserSubject`
   */
  userEntityId?: string;

  enabled: boolean;

  emailVerified?: boolean;

  roles?: Role[];
}

/**
 * User Role object.
 * also see {@link https://www.keycloak.org/docs-api/19.0.3/rest-api/index.html#_rolerepresentation}
 */
export interface Role {
  id: string;
  name: string;
  description?: string;
}

results matching ""

    No results matching ""