Added TransactionPartner object

This commit is contained in:
netkas 2024-10-04 19:48:00 -04:00
parent 07140aa08f
commit eef9ab5624
6 changed files with 285 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace TgBotLib\Enums\Types;
enum TransactionPartnerType : string
{
case USER = 'user';
case FRAGMENT = 'fragment';
case TELEGRAM_ADS = 'telegram_ads';
case OTHER = 'other';
}