setPassportDataErrors¶
Returns: bool
- class aiogram.methods.set_passport_data_errors.SetPassportDataErrors(*, user_id: int, errors: list[PassportElementErrorDataField | PassportElementErrorFrontSide | PassportElementErrorReverseSide | PassportElementErrorSelfie | PassportElementErrorFile | PassportElementErrorFiles | PassportElementErrorTranslationFile | PassportElementErrorTranslationFiles | PassportElementErrorUnspecified], **extra_data: Any)[source]¶
Informs a user that some of the Telegram Passport elements they provided contains errors. The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change). Returns
True
on success. Use this if the data submitted by the user doesn’t satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.Source: https://core.telegram.org/bots/api#setpassportdataerrors
- user_id: int¶
User identifier
- model_computed_fields: ClassVar[Dict[str, ComputedFieldInfo]] = {}¶
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_post_init(context: Any, /) None ¶
We need to both initialize private attributes and call the user-defined model_post_init method.
- errors: list[PassportElementErrorDataField | PassportElementErrorFrontSide | PassportElementErrorReverseSide | PassportElementErrorSelfie | PassportElementErrorFile | PassportElementErrorFiles | PassportElementErrorTranslationFile | PassportElementErrorTranslationFiles | PassportElementErrorUnspecified]¶
A JSON-serialized array describing the errors
Usage¶
As bot method¶
result: bool = await bot.set_passport_data_errors(...)
Method as object¶
Imports:
from aiogram.methods.set_passport_data_errors import SetPassportDataErrors
alias:
from aiogram.methods import SetPassportDataErrors
With specific bot¶
result: bool = await bot(SetPassportDataErrors(...))
As reply into Webhook in handler¶
return SetPassportDataErrors(...)