Interface ChatMemberMember

Represents a chat member that has no additional privileges or restrictions.

interface ChatMemberMember {
    status: "member";
    until_date?: number;
    user: User;
}

Properties

status: "member"

The member's status in the chat, always “member”

until_date?: number

Date when the user's subscription will expire; Unix time

user: User

Information about the user