1 | <?php |
||
16 | class Video extends Message |
||
17 | { |
||
18 | /** |
||
19 | * Message type. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $type = self::TYPE_VIDEO; |
||
24 | |||
25 | protected $properties = ['filename', 'thumb', 'length', 'secret', 'file_length', 'thumb_secret', 'url']; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | 2 | protected function validateSelf() |
|
39 | } |
||
40 |