Interface VerificationStatus

Contains information about verification status of a chat or a user.

interface VerificationStatus {
    @type: "verificationStatus";
    bot_verification_icon_custom_emoji_id: string;
    is_fake?: boolean;
    is_scam?: boolean;
    is_verified?: boolean;
}

Properties

@type: "verificationStatus"
bot_verification_icon_custom_emoji_id: string

Identifier of the custom emoji to be shown as verification sign provided by a bot for the user; 0 if none.

is_fake?: boolean

True, if the chat or the user is marked as fake by Telegram.

is_scam?: boolean

True, if the chat or the user is marked as scam by Telegram.

is_verified?: boolean

True, if the chat or the user is verified by Telegram.