MadelineProtoDocs/docs/API_docs/constructors/decryptedMessageMediaContact_8.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

47 lines
1.2 KiB
Markdown

---
title: decryptedMessageMediaContact
description: decryptedMessageMediaContact attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: decryptedMessageMediaContact\_8
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|phone\_number|[string](../types/string.md) | Yes|
|first\_name|[string](../types/string.md) | Yes|
|last\_name|[string](../types/string.md) | Yes|
|user\_id|[int](../types/int.md) | Yes|
### Type: [DecryptedMessageMedia](../types/DecryptedMessageMedia.md)
### Example:
```
$decryptedMessageMediaContact_8 = ['_' => 'decryptedMessageMediaContact', 'phone_number' => 'string', 'first_name' => 'string', 'last_name' => 'string', 'user_id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "decryptedMessageMediaContact", "phone_number": "string", "first_name": "string", "last_name": "string", "user_id": int}
```
Or, if you're into Lua:
```
decryptedMessageMediaContact_8={_='decryptedMessageMediaContact', phone_number='string', first_name='string', last_name='string', user_id=int}
```