NAME

Telebot::Handler::EditedMessage - Base class for telegram update part edited_message handler

SYNOPSIS

use Telebot::Handler::EditedMessage;
my $handler = Telebot::Handler::EditedMessage->new(
    app => $app,
    payload => {
        message_id => 777,
        from => {
            id => 999,
            is_bot => \0,
            first_name => 'Vladimir',
            last_name => 'Lenin',
        },
        date => 1642266220,
        edit_date => 1642277220,
        chat => {
            id => 444,
            type => 'private',
        },
        text => 'Hello Telegram!',
    },
    update_id => 555,
);
$handler->run();

DESCRIPTION

Telebot::Handler::EditedMessage is the base and default class for edited_message handler. You can create your own handler in Handler/Message.pm

ATTRIBUTES

Telebot::Handler::EditedMessage inherits all attributes from Telebot::Handler.

METHODS

Telebot::Handler::EditedMessage inherits all methods from Telebot::Handler.

run

$handler->run;

This method is overloaded in inheritted classes and called for processing telegram update edited_message. If not overloaded it dumps edited_message.

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#message.