typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
16 lines (15 loc) • 476 B
TypeScript
/**
* ## TransactionPartnerTelegramApi
* Describes a transaction with payment for paid broadcasting.
* @see https://core.telegram.org/bots/api#transactionpartnertelegramapi
*/
export type TransactionPartnerTelegramApi = {
/**
* Type of the transaction partner, always “telegram_api”
*/
type: 'telegram_api';
/**
* The number of successful requests that exceeded regular limits and were therefore billed
*/
request_count: number;
};