/** * ## VideoChatEnded * This object represents a service message about a video chat ended in the chat. * @see https://core.telegram.org/bots/api#videochatended */ export type VideoChatEnded = { /** * Video chat duration in seconds */ duration: number; };