answerPreCheckoutQuery method

Future<bool> answerPreCheckoutQuery(
  1. String preCheckoutQueryId,
  2. bool ok,
  3. String errorMessage
)
inherited

Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an Update with the field pre_checkout_query.

Use this method to respond to such pre-checkout queries.

On success, True is returned.

Note: The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent.

Implementation

Future<bool> answerPreCheckoutQuery(
  String preCheckoutQueryId,
  bool ok,
  String errorMessage,
) {
  return _client.apiCall(_token, 'answerPreCheckoutQuery', {
    'pre_checkout_query_id': preCheckoutQueryId,
    'ok': ok,
    'error_message': errorMessage,
  });
}