[docs]classBirthdate(TelegramObject):""" Describes the birthdate of a user. Source: https://core.telegram.org/bots/api#birthdate """day:int"""Day of the user's birth; 1-31"""month:int"""Month of the user's birth; 1-12"""year:Optional[int]=None"""*Optional*. Year of the user's birth"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,day:int,month:int,year:Optional[int]=None,**__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__(day=day,month=month,year=year,**__pydantic_kwargs)