Interface Contact

Describes a user contact.

interface Contact {
    @type: "contact";
    first_name: string;
    last_name: string;
    phone_number: string;
    user_id: number;
    vcard: string;
}

Properties

@type: "contact"
first_name: string

First name of the user; 1-255 characters in length.

last_name: string

Last name of the user.

phone_number: string

Phone number of the user.

user_id: number

Identifier of the user, if known; 0 otherwise.

vcard: string

Additional data about the user in a form of vCard; 0-2048 bytes in length.