answerShippingQuery#

Returns: bool

class aiogram.methods.answer_shipping_query.AnswerShippingQuery(*, shipping_query_id: str, ok: bool, shipping_options: List[ShippingOption] | None = None, error_message: str | None = None, **extra_data: Any)[source]#

If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an aiogram.types.update.Update with a shipping_query field to the bot. Use this method to reply to shipping queries. On success, True is returned.

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

shipping_query_id: str#

Unique identifier for the query to be answered

ok: bool#

Pass True if delivery to the specified address is possible and False if there are any problems (for example, if delivery to the specified address is not possible)

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.

shipping_options: List[ShippingOption] | None#

Required if ok is True. A JSON-serialized array of available shipping options.

error_message: str | None#

Required if ok is False. Error message in human readable form that explains why it is impossible to complete the order (e.g. «Sorry, delivery to your desired address is unavailable“). Telegram will display this message to the user.

Usage#

As bot method#

result: bool = await bot.answer_shipping_query(...)

Method as object#

Imports:

  • from aiogram.methods.answer_shipping_query import AnswerShippingQuery

  • alias: from aiogram.methods import AnswerShippingQuery

With specific bot#

result: bool = await bot(AnswerShippingQuery(...))

As reply into Webhook in handler#

return AnswerShippingQuery(...)

As shortcut from received object#