answer_shipping_query#
-
template<class Connector>
api_result<boolean_t, Connector&&> answer_shipping_query(Connector &&connector, answer_shipping_query_args_t args)#
-
template<class Connector>
api_result<boolean_t, Connector&&> call(Connector &&connector, answer_shipping_query_args_t args)# connector
is any object satisfying connector concept.If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an Update with a shipping_query field to the bot. Use this method to reply to shipping queries. On success, True is returned.
-
struct answer_shipping_query_args_t#
Arguments that should be passed to
answer_shipping_query()
.Unique identifier for the query to be answered
Specify 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)
-
optional_t<array_t<shipping_option_t>> shipping_options#
Required if ok is True. A JSON-serialized array of available shipping options.
-
optional_t<string_t> error_message#
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.
-
optional_t<array_t<shipping_option_t>> shipping_options#