File

projects/netgrif-components-core/src/lib/user/models/iuser.ts

Description

A generic representation of a User object. All User and User-like instances implement this interface that holds the most basic User attributes.

Index

Properties

Properties

email
email: string
Type : string
id
id: string
Type : string
name
name: string
Type : string

Example: Example

surname
surname: string
Type : string

Example: Netgrif

export interface IUser {
    id: string;
    /**
     * **Example:** example@netgrif.com
     */
    email: string;
    /**
     * **Example:** Example
     */
    name: string;
    /**
     * **Example:** Netgrif
     */
    surname: string;
}

result-matching ""

    No results matching ""