Source code for aiogram.types.revenue_withdrawal_state

from __future__ import annotations

from .base import TelegramObject


[docs] class RevenueWithdrawalState(TelegramObject): """ This object describes the state of a revenue withdrawal operation. Currently, it can be one of - :class:`aiogram.types.revenue_withdrawal_state_pending.RevenueWithdrawalStatePending` - :class:`aiogram.types.revenue_withdrawal_state_succeeded.RevenueWithdrawalStateSucceeded` - :class:`aiogram.types.revenue_withdrawal_state_failed.RevenueWithdrawalStateFailed` Source: https://core.telegram.org/bots/api#revenuewithdrawalstate """