Acrobits IPC SDK
    Preparing search index...

    Type Alias DetailedContactItem

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

    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.

    2.1

    type DetailedContactItem = {
        contactId?: string;
        contactUser?: CloudContact;
        displayName?: string;
        emails?: DetailedContactEmail[];
        numbers?: DetailedContactNumber[];
        profilePictureUrl?: string;
        uri?: DetailedContactURI[];
    }
    Index

    Properties

    contactId?: string

    Unique ID for the contact item.

    This value is required since v2.1.

    2.1

    contactUser?: CloudContact

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

    displayName?: string

    Name of the contact entry.

    emails?: DetailedContactEmail[]

    Emails associated with the contact.

    numbers?: DetailedContactNumber[]

    Numbers associated with the contact.

    profilePictureUrl?: string

    An optional URL for the contact's profile picture.

    URIs associated with the contact.