1 | <?php |
||
18 | class UploadStickerFile extends TelegramMethods |
||
19 | { |
||
20 | /** |
||
21 | * User identifier of sticker file owner |
||
22 | * @var string |
||
23 | */ |
||
24 | public $user_id = 0; |
||
25 | |||
26 | /** |
||
27 | * Png image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either |
||
28 | * width or height must be exactly 512px |
||
29 | * @var InputFile |
||
30 | */ |
||
31 | public $png_sticker; |
||
32 | |||
33 | /** |
||
34 | * Gets the name of all mandatory fields |
||
35 | * @return array |
||
36 | */ |
||
37 | public function getMandatoryFields(): array |
||
44 | } |
||
45 |