MadelineProtoDocs/old_docs/API_docs_v82/constructors/secureValue.md

1.9 KiB

title description image
secureValue Secure value https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: secureValue

Back to constructors index

Secure value

Attributes:

Name Type Required Description
type SecureValueType Yes Secure passport value type
data SecureData Optional Encrypted Telegram Passport element data
front_side SecureFile Optional Encrypted passport file with the front side of the document
reverse_side SecureFile Optional Encrypted passport file with the reverse side of the document
selfie SecureFile Optional Encrypted passport file with a selfie of the user holding the document
files Array of SecureFile Optional Files
plain_data SecurePlainData Optional Plaintext verified passport data
hash bytes Yes Data hash

Type: SecureValue

Example:

$secureValue = ['_' => 'secureValue', 'type' => SecureValueType, 'data' => SecureData, 'front_side' => SecureFile, 'reverse_side' => SecureFile, 'selfie' => SecureFile, 'files' => [SecureFile, SecureFile], 'plain_data' => SecurePlainData, 'hash' => 'bytes'];

Or, if you're into Lua:

secureValue={_='secureValue', type=SecureValueType, data=SecureData, front_side=SecureFile, reverse_side=SecureFile, selfie=SecureFile, files={SecureFile}, plain_data=SecurePlainData, hash='bytes'}