Interface ChatJoinRequest

Describes a user that sent a join request and waits for administrator approval.

interface ChatJoinRequest {
    @type: "chatJoinRequest";
    bio: string;
    date: number;
    user_id: number;
}

Properties

Properties

@type: "chatJoinRequest"
bio: string

A short bio of the user.

date: number

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

user_id: number

User identifier.