ShippingQuery.answer

class pyrogram.types.ShippingQuery.answer

Bound method answer of ShippingQuery.

Use this method as a shortcut for:

await client.answer_shipping_query(
    shipping_query.id,
    ok=True
)

Example

await shipping_query.answer(ok=True)
Parameters:
  • 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).

  • shipping_options (ShippingOptions, optional) – Required if ok is True. A JSON-serialized array of available shipping options.

  • error_message (str, optional) – 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.

Returns:

bool – True, on success.