Interface ChatAdministrator

Contains information about a chat administrator.

interface ChatAdministrator {
    @type: "chatAdministrator";
    custom_title: string;
    is_owner?: boolean;
    user_id: number;
}

Properties

@type: "chatAdministrator"
custom_title: string

Custom title of the administrator.

is_owner?: boolean

True, if the user is the owner of the chat.

user_id: number

User identifier of the administrator.