Added ChatBoostSource objects

This commit is contained in:
netkas 2024-10-06 15:45:44 -04:00
parent 3b02d5a5c2
commit e8a6e7a6e1
6 changed files with 275 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace TgBotLib\Enums\Types;
enum ChatBoostSourceType : string
{
case PREMIUM = 'premium';
case GIFT_CODE = 'gift_code';
case GIVEAWAY = 'giveaway';
}