answerShippingQuery¶
Returns: bool
- class litegram.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
litegram.types.update.Updatewith a shipping_query field to the bot. Use this method to reply to shipping queries. On success,Trueis returned.Source: https://core.telegram.org/bots/api#answershippingquery
- ok: bool¶
Pass
Trueif delivery to the specified address is possible andFalseif there are any problems (for example, if delivery to the specified address is not possible)
- shipping_options: list[ShippingOption] | None¶
Required if ok is
True. A JSON-serialized array of available shipping options.
Usage¶
As bot method¶
result: bool = await bot.answer_shipping_query(...)
Method as object¶
Imports:
from litegram.methods.answer_shipping_query import AnswerShippingQueryalias:
from litegram.methods import AnswerShippingQuery
With specific bot¶
result: bool = await bot(AnswerShippingQuery(...))
As reply into Webhook in handler¶
return AnswerShippingQuery(...)