1 | <?php |
||
22 | class SetChatStickerSet extends TelegramMethods |
||
23 | { |
||
24 | /** |
||
25 | * Unique identifier for the target chat or username of the target supergroup or channel (in the format |
||
26 | * @channelusername) |
||
27 | * @var string |
||
28 | */ |
||
29 | public $chat_id = ''; |
||
30 | |||
31 | /** |
||
32 | * Name of the sticker set to be set as the group sticker set |
||
33 | * @var string |
||
34 | */ |
||
35 | public $sticker_set_name = ''; |
||
36 | |||
37 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
41 | |||
42 | public function getMandatoryFields(): array |
||
49 | } |
||
50 |