Interface ProcessChatJoinRequest

Handles a pending join request in a chat. Request type for Tdjson#processChatJoinRequest.

interface ProcessChatJoinRequest {
    @type: "processChatJoinRequest";
    approve?: boolean;
    chat_id: number;
    user_id: number;
}

Properties

@type: "processChatJoinRequest"
approve?: boolean

Pass true to approve the request; pass false to decline it.

chat_id: number

Chat identifier.

user_id: number

Identifier of the user that sent the request.