MadelineProtoDocs/old_docs/API_docs_v30/constructors/secureValue.md

2.2 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
translation Array of SecureFile Optional Array of encrypted passport files with translated versions of the provided documents
files Array of SecureFile Optional Array of encrypted passport files with photos the of the documents
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, 'translation' => [SecureFile, 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, translation={SecureFile}, files={SecureFile}, plain_data=SecurePlainData, hash='bytes'}