Interface ChatActionBarJoinRequest

The chat is a private chat with an administrator of a chat to which the user sent join request. Subtype of ChatActionBar.

interface ChatActionBarJoinRequest {
    @type: "chatActionBarJoinRequest";
    is_channel?: boolean;
    request_date: number;
    title: string;
}

Properties

@type: "chatActionBarJoinRequest"
is_channel?: boolean

True, if the join request was sent to a channel chat.

request_date: number

Point in time (Unix timestamp) when the join request was sent.

title: string

Title of the chat to which the join request was sent.