Type alias DetailedContactItem

DetailedContactItem: {
    contactId?: string;
    contactUser?: CloudContact;
    displayName?: string;
    numbers?: DetailedContactNumber[];
    profilePictureUrl?: string;
    uri?: DetailedContactURI[];
}

Defines a unified contact item with all possible contact methods. At least one contact method (contactUser, uri, or numbers) should be defined.

Type declaration

  • Optional contactId?: string

    Unique ID for the contact item.

    Remarks

    This value is required since v2.1.

    Since

    2.1

  • Optional contactUser?: CloudContact

    Cloud contact information. Contains cloudUsername, cloudId, and networkId.

  • Optional displayName?: string

    Name of the contact entry.

  • Optional numbers?: DetailedContactNumber[]

    Numbers associated with the contact.

  • Optional profilePictureUrl?: string

    An optional URL for the contact's profile picture.

  • Optional uri?: DetailedContactURI[]

    URIs associated with the contact.

Remarks

This is a unified type that replaces the previous union type of different contact subtypes. For backward compatibility, the contactId field is optional but it is required since v2.1.

Since

2.1

Generated using TypeDoc