NAME

Telebot::Handler::ChatJoinRequest - Base class for telegram update part chat_join_request handler

SYNOPSIS

use Telebot::Handler::ChatJoinRequest;
my $handler = Telebot::Handler::ChatJoinRequest->new(
    app => $app,
    payload => {
        chat => {
            id => 444,
            type => 'channel',
            title => 'XXVII',
        },
        from => {
            id => 999,
            is_bot => \0,
            first_name => 'Vladimir',
            last_name => 'Lenin',
        },
        date => 1642266220,
    },
    update_id => 555,
);
$handler->run();

DESCRIPTION

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

ATTRIBUTES

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

METHODS

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

run

$handler->run;

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

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