typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
26 lines (25 loc) • 765 B
TypeScript
import { Message } from './';
/**
* ## GiveawayCompleted
* This object represents a service message about the completion of a giveaway without public winners.
* @see https://core.telegram.org/bots/api#giveawaycompleted
*/
export type GiveawayCompleted = {
/**
* Number of winners in the giveaway
*/
winner_count: number;
/**
* Optional. Number of undistributed prizes
*/
unclaimed_prize_count: number;
/**
* Optional. Message with the giveaway that was completed, if it wasn't deleted
*/
giveaway_message: Message;
/**
* Optional. True, if the giveaway is a Telegram Star giveaway. Otherwise, currently, the giveaway is a Telegram
* Premium giveaway.
*/
is_star_giveaway: boolean;
};