MadelineProtoDocs/docs/API_docs/constructors/securePlainPhone.md

44 lines
750 B
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: securePlainPhone
description: securePlainPhone attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: securePlainPhone
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|phone|[string](../types/string.md) | Yes|
### Type: [SecurePlainData](../types/SecurePlainData.md)
### Example:
```
$securePlainPhone = ['_' => 'securePlainPhone', 'phone' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "securePlainPhone", "phone": "string"}
```
Or, if you're into Lua:
```
securePlainPhone={_='securePlainPhone', phone='string'}
```