[docs]classPassportElementErrorUnspecified(PassportElementError):""" Represents an issue in an unspecified place. The error is considered resolved when new data is added. Source: https://core.telegram.org/bots/api#passportelementerrorunspecified """source:Literal[PassportElementErrorType.UNSPECIFIED]=PassportElementErrorType.UNSPECIFIED"""Error source, must be *unspecified*"""type:str"""Type of element of the user's Telegram Passport which has the issue"""element_hash:str"""Base64-encoded element hash"""message:str"""Error message"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,source:Literal[PassportElementErrorType.UNSPECIFIED]=PassportElementErrorType.UNSPECIFIED,type:str,element_hash:str,message:str,**__pydantic_kwargs:Any,)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(source=source,type=type,element_hash=element_hash,message=message,**__pydantic_kwargs,)