MadelineProto/old_docs/API_docs_v55/constructors/auth_sentCode.md

40 lines
991 B
Markdown
Raw Normal View History

---
2017-01-19 23:02:27 +01:00
title: auth.sentCode
description: auth_sentCode attributes, type and example
---
2017-01-19 23:02:27 +01:00
## Constructor: auth.sentCode
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|phone\_registered|[Bool](../types/Bool.md) | Optional|
|type|[auth\_SentCodeType](../types/auth_SentCodeType.md) | Yes|
|phone\_code\_hash|[string](../types/string.md) | Yes|
|next\_type|[auth\_CodeType](../types/auth_CodeType.md) | Optional|
|timeout|[int](../types/int.md) | Optional|
### Type: [auth\_SentCode](../types/auth_SentCode.md)
### Example:
```
2017-03-11 20:06:30 +01:00
$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => string, 'next_type' => auth_CodeType, 'timeout' => int, ];
```
Or, if you're into Lua:
```
2017-03-11 20:06:30 +01:00
auth_sentCode={_='auth.sentCode', phone_registered=Bool, type=auth_SentCodeType, phone_code_hash=string, next_type=auth_CodeType, timeout=int, }
```