PassportElementErrorDataField

class telegram.PassportElementErrorDataField(type, field_name, data_hash, message, *, api_kwargs=None)[source]

Bases: telegram.PassportElementError

Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field’s value changes.

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

Parameters:
  • type (str) – The section of the user’s Telegram Passport which has the error, one of "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address".

  • field_name (str) – Name of the data field which has the error.

  • data_hash (str) – Base64-encoded data hash.

  • message (str) – Error message.

type[source]

The section of the user’s Telegram Passport which has the error, one of "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address".

Type:

str

field_name[source]

Name of the data field which has the error.

Type:

str

data_hash[source]

Base64-encoded data hash.

Type:

str

message[source]

Error message.

Type:

str