NAME
Telebot::Handler::PreCheckoutQuery - Base class for telegram update part pre_checkout_query handler.
SYNOPSIS
use Telebot::Handler::PreCheckoutQuery;
my $handler = Telebot::Handler::PreCheckoutQuery->new(
app => $app,
payload => {
id => 777,
from => {
id => 999,
is_bot => \0,
first_name => 'Vladimir',
last_name => 'Lenin',
},
currency => 'RUB',
total_amount => 10000,
invoice_payload => 'Invoice#12345',
},
update_id => 555,
);
$handler->run();
DESCRIPTION
Telebot::Handler::PreCheckoutQuery is the base and default class for pre_checkout_query handler. You can create your own handler in Handler/PreCheckoutQuery.pm
ATTRIBUTES
Telebot::Handler::PreCheckoutQuery inherits all attributes from Telebot::Handler.
METHODS
Telebot::Handler::PreCheckoutQuery inherits all methods from Telebot::Handler.
run
$handler->run;
This method is overloaded in inheritted classes and called for processing telegram update pre_checkout_query. If not overloaded it dumps pre_checkout_query.
COPYRIGHT AND LICENSE
Copyright (C) 2022, Igor Lobanov. This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.
SEE ALSO
https://github.com/igorlobanov/telebot, Mojolicious::Guides, https://mojolicious.org, https://core.telegram.org/bots/api#precheckoutquery.