Merge branch 'dev-3.x'

This commit is contained in:
JRoot Junior 2025-04-14 00:15:35 +03:00
commit 7daa8e65cb
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
246 changed files with 9935 additions and 413 deletions

View file

@ -22,11 +22,14 @@ Here is list of all available enums:
inline_query_result_type
input_media_type
input_paid_media_type
input_profile_photo_type
input_story_content_type
keyboard_button_poll_type_type
mask_position_point
menu_button_type
message_entity_type
message_origin_type
owned_gift_type
paid_media_type
parse_mode
passport_element_error_type
@ -35,6 +38,8 @@ Here is list of all available enums:
revenue_withdrawal_state_type
sticker_format
sticker_type
story_area_type_type
topic_icon_color
transaction_partner_type
transaction_partner_user_transaction_type_enum
update_type

View file

@ -0,0 +1,9 @@
#####################
InputProfilePhotoType
#####################
.. automodule:: aiogram.enums.input_profile_photo_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#####################
InputStoryContentType
#####################
.. automodule:: aiogram.enums.input_story_content_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#############
OwnedGiftType
#############
.. automodule:: aiogram.enums.owned_gift_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#################
StoryAreaTypeType
#################
.. automodule:: aiogram.enums.story_area_type_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#########################################
TransactionPartnerUserTransactionTypeEnum
#########################################
.. automodule:: aiogram.enums.transaction_partner_user_transaction_type_enum
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,45 @@
##################
convertGiftToStars
##################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.convert_gift_to_stars
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.convert_gift_to_stars(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.convert_gift_to_stars import ConvertGiftToStars`
- alias: :code:`from aiogram.methods import ConvertGiftToStars`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(ConvertGiftToStars(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return ConvertGiftToStars(...)

View file

@ -0,0 +1,45 @@
######################
deleteBusinessMessages
######################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.delete_business_messages
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.delete_business_messages(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.delete_business_messages import DeleteBusinessMessages`
- alias: :code:`from aiogram.methods import DeleteBusinessMessages`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(DeleteBusinessMessages(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return DeleteBusinessMessages(...)

View file

@ -0,0 +1,45 @@
###########
deleteStory
###########
Returns: :obj:`bool`
.. automodule:: aiogram.methods.delete_story
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.delete_story(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.delete_story import DeleteStory`
- alias: :code:`from aiogram.methods import DeleteStory`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(DeleteStory(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return DeleteStory(...)

View file

@ -0,0 +1,45 @@
#########
editStory
#########
Returns: :obj:`Story`
.. automodule:: aiogram.methods.edit_story
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: Story = await bot.edit_story(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.edit_story import EditStory`
- alias: :code:`from aiogram.methods import EditStory`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: Story = await bot(EditStory(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return EditStory(...)

View file

@ -0,0 +1,38 @@
#######################
getBusinessAccountGifts
#######################
Returns: :obj:`OwnedGifts`
.. automodule:: aiogram.methods.get_business_account_gifts
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: OwnedGifts = await bot.get_business_account_gifts(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.get_business_account_gifts import GetBusinessAccountGifts`
- alias: :code:`from aiogram.methods import GetBusinessAccountGifts`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: OwnedGifts = await bot(GetBusinessAccountGifts(...))

View file

@ -0,0 +1,38 @@
#############################
getBusinessAccountStarBalance
#############################
Returns: :obj:`StarAmount`
.. automodule:: aiogram.methods.get_business_account_star_balance
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: StarAmount = await bot.get_business_account_star_balance(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.get_business_account_star_balance import GetBusinessAccountStarBalance`
- alias: :code:`from aiogram.methods import GetBusinessAccountStarBalance`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: StarAmount = await bot(GetBusinessAccountStarBalance(...))

View file

@ -0,0 +1,45 @@
#######################
giftPremiumSubscription
#######################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.gift_premium_subscription
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.gift_premium_subscription(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.gift_premium_subscription import GiftPremiumSubscription`
- alias: :code:`from aiogram.methods import GiftPremiumSubscription`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(GiftPremiumSubscription(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return GiftPremiumSubscription(...)

View file

@ -15,13 +15,9 @@ Stickers
create_new_sticker_set
delete_sticker_from_set
delete_sticker_set
get_available_gifts
get_custom_emoji_stickers
get_sticker_set
remove_chat_verification
remove_user_verification
replace_sticker_in_set
send_gift
send_sticker
set_custom_emoji_sticker_set_thumbnail
set_sticker_emoji_list
@ -31,8 +27,6 @@ Stickers
set_sticker_set_thumbnail
set_sticker_set_title
upload_sticker_file
verify_chat
verify_user
Available methods
=================
@ -133,15 +127,39 @@ Updating messages
.. toctree::
:maxdepth: 1
convert_gift_to_stars
delete_business_messages
delete_message
delete_messages
delete_story
edit_message_caption
edit_message_live_location
edit_message_media
edit_message_reply_markup
edit_message_text
edit_story
get_available_gifts
get_business_account_gifts
get_business_account_star_balance
gift_premium_subscription
post_story
read_business_message
remove_business_account_profile_photo
remove_chat_verification
remove_user_verification
send_gift
set_business_account_bio
set_business_account_gift_settings
set_business_account_name
set_business_account_profile_photo
set_business_account_username
stop_message_live_location
stop_poll
transfer_business_account_stars
transfer_gift
upgrade_gift
verify_chat
verify_user
Inline mode
===========

View file

@ -0,0 +1,45 @@
#########
postStory
#########
Returns: :obj:`Story`
.. automodule:: aiogram.methods.post_story
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: Story = await bot.post_story(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.post_story import PostStory`
- alias: :code:`from aiogram.methods import PostStory`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: Story = await bot(PostStory(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return PostStory(...)

View file

@ -0,0 +1,45 @@
###################
readBusinessMessage
###################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.read_business_message
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.read_business_message(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.read_business_message import ReadBusinessMessage`
- alias: :code:`from aiogram.methods import ReadBusinessMessage`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(ReadBusinessMessage(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return ReadBusinessMessage(...)

View file

@ -0,0 +1,45 @@
#################################
removeBusinessAccountProfilePhoto
#################################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.remove_business_account_profile_photo
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.remove_business_account_profile_photo(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.remove_business_account_profile_photo import RemoveBusinessAccountProfilePhoto`
- alias: :code:`from aiogram.methods import RemoveBusinessAccountProfilePhoto`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(RemoveBusinessAccountProfilePhoto(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return RemoveBusinessAccountProfilePhoto(...)

View file

@ -0,0 +1,45 @@
#####################
setBusinessAccountBio
#####################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.set_business_account_bio
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.set_business_account_bio(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.set_business_account_bio import SetBusinessAccountBio`
- alias: :code:`from aiogram.methods import SetBusinessAccountBio`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(SetBusinessAccountBio(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return SetBusinessAccountBio(...)

View file

@ -0,0 +1,45 @@
##############################
setBusinessAccountGiftSettings
##############################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.set_business_account_gift_settings
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.set_business_account_gift_settings(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.set_business_account_gift_settings import SetBusinessAccountGiftSettings`
- alias: :code:`from aiogram.methods import SetBusinessAccountGiftSettings`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(SetBusinessAccountGiftSettings(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return SetBusinessAccountGiftSettings(...)

View file

@ -0,0 +1,45 @@
######################
setBusinessAccountName
######################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.set_business_account_name
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.set_business_account_name(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.set_business_account_name import SetBusinessAccountName`
- alias: :code:`from aiogram.methods import SetBusinessAccountName`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(SetBusinessAccountName(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return SetBusinessAccountName(...)

View file

@ -0,0 +1,45 @@
##############################
setBusinessAccountProfilePhoto
##############################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.set_business_account_profile_photo
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.set_business_account_profile_photo(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.set_business_account_profile_photo import SetBusinessAccountProfilePhoto`
- alias: :code:`from aiogram.methods import SetBusinessAccountProfilePhoto`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(SetBusinessAccountProfilePhoto(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return SetBusinessAccountProfilePhoto(...)

View file

@ -0,0 +1,45 @@
##########################
setBusinessAccountUsername
##########################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.set_business_account_username
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.set_business_account_username(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.set_business_account_username import SetBusinessAccountUsername`
- alias: :code:`from aiogram.methods import SetBusinessAccountUsername`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(SetBusinessAccountUsername(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return SetBusinessAccountUsername(...)

View file

@ -0,0 +1,45 @@
############################
transferBusinessAccountStars
############################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.transfer_business_account_stars
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.transfer_business_account_stars(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.transfer_business_account_stars import TransferBusinessAccountStars`
- alias: :code:`from aiogram.methods import TransferBusinessAccountStars`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(TransferBusinessAccountStars(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return TransferBusinessAccountStars(...)

View file

@ -0,0 +1,45 @@
############
transferGift
############
Returns: :obj:`bool`
.. automodule:: aiogram.methods.transfer_gift
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.transfer_gift(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.transfer_gift import TransferGift`
- alias: :code:`from aiogram.methods import TransferGift`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(TransferGift(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return TransferGift(...)

View file

@ -0,0 +1,45 @@
###########
upgradeGift
###########
Returns: :obj:`bool`
.. automodule:: aiogram.methods.upgrade_gift
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.upgrade_gift(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.upgrade_gift import UpgradeGift`
- alias: :code:`from aiogram.methods import UpgradeGift`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(UpgradeGift(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return UpgradeGift(...)

View file

@ -0,0 +1,10 @@
#################
AcceptedGiftTypes
#################
.. automodule:: aiogram.types.accepted_gift_types
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#################
BusinessBotRights
#################
.. automodule:: aiogram.types.business_bot_rights
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
########
GiftInfo
########
.. automodule:: aiogram.types.gift_info
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -11,6 +11,7 @@ Available types
.. toctree::
:maxdepth: 1
accepted_gift_types
animation
audio
background_fill
@ -35,6 +36,7 @@ Available types
bot_description
bot_name
bot_short_description
business_bot_rights
business_connection
business_intro
business_location
@ -82,6 +84,9 @@ Available types
forum_topic_reopened
general_forum_topic_hidden
general_forum_topic_unhidden
gift
gift_info
gifts
giveaway
giveaway_completed
giveaway_created
@ -100,6 +105,12 @@ Available types
input_paid_media_photo
input_paid_media_video
input_poll_option
input_profile_photo
input_profile_photo_animated
input_profile_photo_static
input_story_content
input_story_content_photo
input_story_content_video
keyboard_button
keyboard_button_poll_type
keyboard_button_request_chat
@ -107,6 +118,7 @@ Available types
keyboard_button_request_users
link_preview_options
location
location_address
login_url
maybe_inaccessible_message
menu_button
@ -124,11 +136,16 @@ Available types
message_origin_user
message_reaction_count_updated
message_reaction_updated
owned_gift
owned_gift_regular
owned_gift_unique
owned_gifts
paid_media
paid_media_info
paid_media_photo
paid_media_preview
paid_media_video
paid_message_price_changed
photo_size
poll
poll_answer
@ -144,9 +161,24 @@ Available types
reply_parameters
response_parameters
shared_user
star_amount
story
story_area
story_area_position
story_area_type
story_area_type_link
story_area_type_location
story_area_type_suggested_reaction
story_area_type_unique_gift
story_area_type_weather
switch_inline_query_chosen_chat
text_quote
unique_gift
unique_gift_backdrop
unique_gift_backdrop_colors
unique_gift_info
unique_gift_model
unique_gift_symbol
user
user_chat_boosts
user_profile_photos
@ -241,8 +273,6 @@ Stickers
.. toctree::
:maxdepth: 1
gift
gifts
input_sticker
mask_position
sticker

View file

@ -0,0 +1,10 @@
#################
InputProfilePhoto
#################
.. automodule:: aiogram.types.input_profile_photo
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#########################
InputProfilePhotoAnimated
#########################
.. automodule:: aiogram.types.input_profile_photo_animated
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#######################
InputProfilePhotoStatic
#######################
.. automodule:: aiogram.types.input_profile_photo_static
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#################
InputStoryContent
#################
.. automodule:: aiogram.types.input_story_content
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
######################
InputStoryContentPhoto
######################
.. automodule:: aiogram.types.input_story_content_photo
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
######################
InputStoryContentVideo
######################
.. automodule:: aiogram.types.input_story_content_video
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
###############
LocationAddress
###############
.. automodule:: aiogram.types.location_address
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#########
OwnedGift
#########
.. automodule:: aiogram.types.owned_gift
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
################
OwnedGiftRegular
################
.. automodule:: aiogram.types.owned_gift_regular
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
###############
OwnedGiftUnique
###############
.. automodule:: aiogram.types.owned_gift_unique
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
##########
OwnedGifts
##########
.. automodule:: aiogram.types.owned_gifts
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#######################
PaidMessagePriceChanged
#######################
.. automodule:: aiogram.types.paid_message_price_changed
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
##########
StarAmount
##########
.. automodule:: aiogram.types.star_amount
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#########
StoryArea
#########
.. automodule:: aiogram.types.story_area
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#################
StoryAreaPosition
#################
.. automodule:: aiogram.types.story_area_position
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#############
StoryAreaType
#############
.. automodule:: aiogram.types.story_area_type
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#################
StoryAreaTypeLink
#################
.. automodule:: aiogram.types.story_area_type_link
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#####################
StoryAreaTypeLocation
#####################
.. automodule:: aiogram.types.story_area_type_location
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
##############################
StoryAreaTypeSuggestedReaction
##############################
.. automodule:: aiogram.types.story_area_type_suggested_reaction
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
#######################
StoryAreaTypeUniqueGift
#######################
.. automodule:: aiogram.types.story_area_type_unique_gift
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
####################
StoryAreaTypeWeather
####################
.. automodule:: aiogram.types.story_area_type_weather
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
##########
UniqueGift
##########
.. automodule:: aiogram.types.unique_gift
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
##################
UniqueGiftBackdrop
##################
.. automodule:: aiogram.types.unique_gift_backdrop
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
########################
UniqueGiftBackdropColors
########################
.. automodule:: aiogram.types.unique_gift_backdrop_colors
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
##############
UniqueGiftInfo
##############
.. automodule:: aiogram.types.unique_gift_info
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
###############
UniqueGiftModel
###############
.. automodule:: aiogram.types.unique_gift_model
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -0,0 +1,10 @@
################
UniqueGiftSymbol
################
.. automodule:: aiogram.types.unique_gift_symbol
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields

View file

@ -232,7 +232,7 @@ Example:
.. code-block:: python
:caption: module_1.py
:name: module_1
:name: module_1
router2 = Router()
@ -242,7 +242,7 @@ Example:
.. code-block:: python
:caption: module_2.py
:name: module_2
:name: module_2
from module_2 import router2