Interface DetailedContactItem

Defines a DetailedContactItem object with additional fields like profile picture, SIP URIs and contact type etc.

interface DetailedContactItem {
    cloudId: string;
    cloudUsername: string;
    displayName?: string;
    networkId: string;
    profilePictureUrl?: string;
    type: ContactType;
    uri: ContactURI | DetailedContactURI[];
}

Properties

cloudId: string

Cloud ID associated with the contact.

cloudUsername: string

Cloud username associated with the contact.

displayName?: string

Name of the contact entry.

networkId: string

Network ID for the contact.

profilePictureUrl?: string

An optional URL for the contact's profile picture.

Type of contact item.

URI or number associated with the contact with prefix (e.g. sip: or tel:)

Generated using TypeDoc