MadelineProtoDocs/docs/API_docs/constructors/savedPhoneContact.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.1 KiB

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

Constructor: savedPhoneContact

Back to constructors index

Saved phone contact

Attributes:

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

Type: SavedContact

Example:

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

PWRTelegram json-encoded version:

{"_": "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}