MadelineProtoDocs/old_docs/API_docs_v38/constructors/account_sentChangePhoneCode.md
2018-04-04 19:52:48 +02:00

1.0 KiB

title description image
account.sentChangePhoneCode account_sentChangePhoneCode attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: account.sentChangePhoneCode

Back to constructors index

Attributes:

Name Type Required
phone_code_hash string Yes
send_call_timeout int Yes

Type: account_SentChangePhoneCode

Example:

$account_sentChangePhoneCode = ['_' => 'account.sentChangePhoneCode', 'phone_code_hash' => 'string', 'send_call_timeout' => int];

PWRTelegram json-encoded version:

{"_": "account.sentChangePhoneCode", "phone_code_hash": "string", "send_call_timeout": int}

Or, if you're into Lua:

account_sentChangePhoneCode={_='account.sentChangePhoneCode', phone_code_hash='string', send_call_timeout=int}