Total Complexity | 2 |
Total Lines | 58 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
17 | class InlineQueryResultCachedMpeg4GifType extends InlineQueryResultType implements HasParseModeVariableInterface |
||
18 | { |
||
19 | use CaptionEntitiesFieldTrait; |
||
20 | use FillFromArrayTrait; |
||
21 | |||
22 | /** |
||
23 | * A valid file identifier for the MP4 file. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | public $mpeg4FileId; |
||
28 | |||
29 | /** |
||
30 | * Optional. Title for the result. |
||
31 | * |
||
32 | * @var string|null |
||
33 | */ |
||
34 | public $title; |
||
35 | |||
36 | /** |
||
37 | * Optional. Caption of the GIF file to be sent, 0-1024 characters. |
||
38 | * |
||
39 | * @var string|null |
||
40 | */ |
||
41 | public $caption; |
||
42 | |||
43 | /** |
||
44 | * Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, |
||
45 | * fixed-width text or inline URLs in the media caption. |
||
46 | * |
||
47 | * @var string|null |
||
48 | */ |
||
49 | public $parseMode; |
||
50 | |||
51 | /** |
||
52 | * Optional. Content of the message to be sent instead of the GIF animation. |
||
53 | * |
||
54 | * @var InputMessageContentType|null |
||
55 | */ |
||
56 | public $inputMessageContent; |
||
57 | |||
58 | /** |
||
59 | * @throws \TgBotApi\BotApiBase\Exception\BadArgumentException |
||
60 | */ |
||
61 | public static function create( |
||
77 |