MadelineProtoDocs/docs/API_docs/constructors/savedPhoneContact.md

47 lines
1.0 KiB
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: savedPhoneContact
description: savedPhoneContact attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: savedPhoneContact
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|phone|[string](../types/string.md) | Yes|
|first\_name|[string](../types/string.md) | Yes|
|last\_name|[string](../types/string.md) | Yes|
|date|[int](../types/int.md) | Yes|
### Type: [SavedContact](../types/SavedContact.md)
### Example:
```
$savedPhoneContact = ['_' => 'savedPhoneContact', 'phone' => 'string', 'first_name' => 'string', 'last_name' => 'string', 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) 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}
```