stopMessageLiveLocation#

Returns: Union[Message, bool]

class aiogram.methods.stop_message_live_location.StopMessageLiveLocation(*, chat_id: int | str | None = None, message_id: int | None = None, inline_message_id: str | None = None, reply_markup: InlineKeyboardMarkup | None = None, **extra_data: Any)[source]#

Use this method to stop updating a live location message before live_period expires. On success, if the message is not an inline message, the edited aiogram.types.message.Message is returned, otherwise True is returned.

Source: https://core.telegram.org/bots/api#stopmessagelivelocation

chat_id: int | str | None#

Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)

message_id: int | None#

Required if inline_message_id is not specified. Identifier of the message with live location to stop

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_post_init(_ModelMetaclass__context: Any) None#

We need to both initialize private attributes and call the user-defined model_post_init method.

inline_message_id: str | None#

Required if chat_id and message_id are not specified. Identifier of the inline message

reply_markup: InlineKeyboardMarkup | None#

A JSON-serialized object for a new inline keyboard.

Usage#

As bot method#

result: Union[Message, bool] = await bot.stop_message_live_location(...)

Method as object#

Imports:

  • from aiogram.methods.stop_message_live_location import StopMessageLiveLocation

  • alias: from aiogram.methods import StopMessageLiveLocation

With specific bot#

result: Union[Message, bool] = await bot(StopMessageLiveLocation(...))

As reply into Webhook in handler#

return StopMessageLiveLocation(...)

As shortcut from received object#