Constructor: auth.sentCode
Contains info about a sent verification code.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
type | auth.SentCodeType | Yes | Phone code type |
phone_code_hash | string | Yes | Phone code hash, to be stored and later re-used with auth.signIn |
next_type | auth.CodeType | Optional | Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use auth.resendCode |
timeout | int | Optional | Timeout for reception of the phone code |
Type: auth.SentCode
Example:
$auth_sentCode = ['_' => 'auth.sentCode', 'type' => auth.SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth.CodeType, 'timeout' => int];