Interface Contact

Represents a contact. Look at ContactRepository documentation to find out the available ways to obtain objects adhering to this interface.

interface Contact {
    emails: readonly Email[];
    favorite: boolean;
    id: string;
    name: string;
    phones: readonly Phone[];
    type: ContactType;
    user?: UserNg;
}

Properties

emails: readonly Email[]
favorite: boolean
id: string
name: string
phones: readonly Phone[]
user?: UserNg

When the contact is associated with a system's user, this property allows access to it.