typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
17 lines (16 loc) • 513 B
TypeScript
import { RevenueWithdrawalState } from './RevenueWithdrawalState';
/**
* ## TransactionPartnerFragment
* Describes a withdrawal transaction with Fragment.
* @see https://core.telegram.org/bots/api#transactionpartnerfragment
*/
export type TransactionPartnerFragment = {
/**
* Type of the transaction partner, always “fragment”
*/
type: 'fragment';
/**
* Optional. State of the transaction if the transaction is outgoing
*/
withdrawal_state?: RevenueWithdrawalState;
};