Added RevenueWithdrawalState objects

This commit is contained in:
netkas 2024-10-04 15:44:37 -04:00
parent 6839980fdb
commit 07140aa08f
5 changed files with 189 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace TgBotLib\Enums\Types;
enum RevenueWithdrawalType : string
{
case PENDING = 'pending';
case SUCCEEDED = 'succeed';
case FAILED = 'failed';
}