MadelineProtoDocs/docs/API_docs/constructors/savedPhoneContact.md

943 B

title description image
savedPhoneContact Saved contact https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: savedPhoneContact

Back to constructors index

Saved contact

Attributes:

Name Type Required Description
phone string Yes Phone number
first_name string Yes First name
last_name string Yes Last name
date int Yes Date added

Type: SavedContact

Example:

$savedPhoneContact = ['_' => 'savedPhoneContact', 'phone' => 'string', 'first_name' => 'string', 'last_name' => 'string', 'date' => int];

Or, if you're into Lua:

savedPhoneContact={_='savedPhoneContact', phone='string', first_name='string', last_name='string', date=int}