Source code for aiogram.enums.transaction_partner_type

from enum import Enum


[docs] class TransactionPartnerType(str, Enum): """ This object represents a type of transaction partner. Source: https://core.telegram.org/bots/api#transactionpartner """ FRAGMENT = "fragment" OTHER = "other" USER = "user" TELEGRAM_ADS = "telegram_ads" TELEGRAM_API = "telegram_api"