Interface ChatMemberOwner

Represents a chat member that owns the chat and has all administrator privileges.

interface ChatMemberOwner {
    custom_title?: string;
    is_anonymous: boolean;
    status: "creator";
    user: User;
}

Properties

custom_title?: string

Custom title for this user

is_anonymous: boolean

True, if the user's presence in the chat is hidden

status: "creator"

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

user: User

Information about the user