| 1 | <?php |
||
| 20 | class SetStickerPositionInSet extends TelegramMethods |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * File identifier of the sticker |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public $sticker = ''; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * New sticker position in the set, zero-based |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | public $position = 0; |
||
| 33 | |||
| 34 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
| 38 | |||
| 39 | public function getMandatoryFields(): array |
||
| 46 | } |
||
| 47 |