UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

12 lines (11 loc) 367 B
/** * ## VideoChatScheduled * This object represents a service message about a video chat scheduled in the chat. * @see https://core.telegram.org/bots/api#videochatscheduled */ export type VideoChatScheduled = { /** * Point in time (Unix timestamp) when the video chat is supposed to be started by a chat administrator */ start_date: number; };