MadelineProtoDocs/old_docs/API_docs_v14/constructors/auth.sentCodeTypeSms.md

40 lines
779 B
Markdown

---
title: auth.sentCodeTypeSms
description: The code was sent via SMS
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/constructors/auth_sentCodeTypeSms.html
---
# Constructor: auth.sentCodeTypeSms
[Back to constructors index](index.md)
The code was sent via SMS
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|length|[int](../types/int.md) | Yes|Length of the code in bytes|
### Type: [auth.SentCodeType](../types/auth.SentCodeType.md)
### Example:
```php
$auth.sentCodeTypeSms = ['_' => 'auth.sentCodeTypeSms', 'length' => int];
```
Or, if you're into Lua:
```lua
auth.sentCodeTypeSms={_='auth.sentCodeTypeSms', length=int}
```