MadelineProtoDocs/docs/API_docs/constructors/secureValueError.md

894 B

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

Constructor: secureValueError

Back to constructors index

Secure value error

Attributes:

Name Type Required Description
type SecureValueType Yes Type of element which has the issue
hash bytes Yes Hash
text string Yes Error message

Type: SecureValueError

Example:

$secureValueError = ['_' => 'secureValueError', 'type' => SecureValueType, 'hash' => 'bytes', 'text' => 'string'];

Or, if you're into Lua:

secureValueError={_='secureValueError', type=SecureValueType, hash='bytes', text='string'}