SecureValueErrorFile
- class pyrogram.raw.types.SecureValueErrorFile
Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.
Constructor of
SecureValueError.- Details:
Layer:
223ID:
7A700873
- Parameters:
type (
SecureValueType) – One of secureValueTypeUtilityBill, secureValueTypeBankStatement, secureValueTypeRentalAgreement, secureValueTypePassportRegistration, secureValueTypeTemporaryRegistrationfile_hash (
bytes) – File hashtext (
str) – Error message
TL Schema
secureValueErrorFile#7a700873
type:SecureValueType
file_hash:bytes
text:string
= SecureValueError
Parameter Tree
SecureValueErrorFile
├── type →
SecureValueType│ ├──
SecureValueTypePassport│ ├──
SecureValueTypeAddress│ ├──
SecureValueTypePhone│ └──
SecureValueTypeEmail├── file_hash →
bytes└── text →
stringExample
SecureValueErrorFile(
type=SecureValueTypePersonalDetails(),
file_hash=b"data",
text="Open",
)