MadelineProtoDocs/docs/API_docs/constructors/inputPaymentCredentialsSaved.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.0 KiB

title description image
inputPaymentCredentialsSaved Payment credentials saved https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputPaymentCredentialsSaved

Back to constructors index

Payment credentials saved

Attributes:

Name Type Required Description
id string Yes ID
tmp_password bytes Yes Tmp password

Type: InputPaymentCredentials

Example:

$inputPaymentCredentialsSaved = ['_' => 'inputPaymentCredentialsSaved', 'id' => 'string', 'tmp_password' => 'bytes'];

PWRTelegram json-encoded version:

{"_": "inputPaymentCredentialsSaved", "id": "string", "tmp_password": {"_": "bytes", "bytes":"base64 encoded bytes"}}

Or, if you're into Lua:

inputPaymentCredentialsSaved={_='inputPaymentCredentialsSaved', id='string', tmp_password='bytes'}