typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
20 lines (19 loc) • 498 B
TypeScript
/**
* ## MessageOriginHiddenUser
* The message was originally sent by an unknown user.
* @see https://core.telegram.org/bots/api#messageoriginhiddenuser
*/
export type MessageOriginHiddenUser = {
/**
* Type of the message origin, always “hidden_user”
*/
type: 'hidden_user';
/**
* Date the message was sent originally in Unix time
*/
date: number;
/**
* Name of the user that sent the message originally
*/
sender_user_name: string;
};