[docs]classGetUserProfileAudios(TelegramMethod[UserProfileAudios]):""" Use this method to get a list of profile audios for a user. Returns a :class:`aiogram.types.user_profile_audios.UserProfileAudios` object. Source: https://core.telegram.org/bots/api#getuserprofileaudios """__returning__=UserProfileAudios__api_method__="getUserProfileAudios"user_id:int"""Unique identifier of the target user"""offset:int|None=None"""Sequential number of the first audio to be returned. By default, all audios are returned."""limit:int|None=None"""Limits the number of audios to be retrieved. Values between 1-100 are accepted. Defaults to 100."""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,user_id:int,offset:int|None=None,limit:int|None=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__(user_id=user_id,offset=offset,limit=limit,**__pydantic_kwargs)