| Total Complexity | 1 | 
| Total Lines | 41 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | class InputMediaAnimationType extends InputMediaType  | 
            ||
| 15 | { | 
            ||
| 16 | /**  | 
            ||
| 17 | * Optional. Thumbnail of the file sent. The thumbnail should be in JPEG format and less than 200 kB in size.  | 
            ||
| 18 | * A thumbnail‘s width and height should not exceed 90.  | 
            ||
| 19 | * Ignored if the file is not uploaded using multipart/form-data.  | 
            ||
| 20 | * Thumbnails can’t be reused and can be only uploaded as a new file,  | 
            ||
| 21 | * so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using  | 
            ||
| 22 | * multipart/form-data under <file_attach_name>.  | 
            ||
| 23 | *  | 
            ||
| 24 | * @var InputFileType|string|null  | 
            ||
| 25 | */  | 
            ||
| 26 | public $thumb;  | 
            ||
| 27 | |||
| 28 | /**  | 
            ||
| 29 | * Optional. Animation width.  | 
            ||
| 30 | *  | 
            ||
| 31 | * @var int|null  | 
            ||
| 32 | */  | 
            ||
| 33 | public $width;  | 
            ||
| 34 | |||
| 35 | /**  | 
            ||
| 36 | * Optional. Animation height.  | 
            ||
| 37 | *  | 
            ||
| 38 | * @var int|null  | 
            ||
| 39 | */  | 
            ||
| 40 | public $height;  | 
            ||
| 41 | |||
| 42 | /**  | 
            ||
| 43 | * Optional. Animation duration.  | 
            ||
| 44 | *  | 
            ||
| 45 | * @var int|null  | 
            ||
| 46 | */  | 
            ||
| 47 | public $duration;  | 
            ||
| 48 | |||
| 49 | /**  | 
            ||
| 50 | * InputMediaAnimationType constructor.  | 
            ||
| 51 | */  | 
            ||
| 52 | public function __construct()  | 
            ||
| 57 |