telegram.PassportElementErrorFiles

class telegram.PassportElementErrorFiles(type: str, file_hashes: str, message: str, **kwargs)

Bases: telegram.passport.passportelementerrors.PassportElementError

Represents an issue with a list of scans. The error is considered resolved when the file with the document scan changes.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their source, type, file_hashes, data_hash and message are equal.

type

The section of the user’s Telegram Passport which has the issue, one of “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration”.

Type:str
file_hashes

List of base64-encoded file hashes.

Type:List[str]
message

Error message.

Type:str
Parameters:
  • type (str) – The section of the user’s Telegram Passport which has the issue, one of “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration”.
  • file_hashes (List[str]) – List of base64-encoded file hashes.
  • message (str) – Error message.
  • **kwargs (dict) – Arbitrary keyword arguments.