MadelineProtoDocs/old_docs/API_docs_v105/constructors/securePlainPhone.md

39 lines
664 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: securePlainPhone
description: Secure plain phone
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: securePlainPhone
[Back to constructors index](index.md)
Secure plain phone
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|phone|[string](../types/string.md) | Yes|Phone|
### Type: [SecurePlainData](../types/SecurePlainData.md)
### Example:
```php
$securePlainPhone = ['_' => 'securePlainPhone', 'phone' => 'string'];
```
Or, if you're into Lua:
```lua
securePlainPhone={_='securePlainPhone', phone='string'}
```