Interface ChatMemberStatusCreator

Provides information about the status of a member in a chat. Subtype of ChatMemberStatus.

interface ChatMemberStatusCreator {
    @type: "chatMemberStatusCreator";
    custom_title: string;
    is_anonymous?: boolean;
    is_member?: boolean;
}

Properties

@type: "chatMemberStatusCreator"
custom_title: string

A custom title of the owner; 0-16 characters without emoji; applicable to supergroups only.

is_anonymous?: boolean

True, if the creator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only.

is_member?: boolean

True, if the user is a member of the chat.