Вход Регистрация
Файл: upload/core/vendor/longman/telegram-bot/src/Entities/InputMedia/InputMediaVideo.php
Строк: 208
<?php

/**
 * This file is part of the TelegramBot package.
 *
 * (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace LongmanTelegramBotEntitiesInputMedia;

use 
LongmanTelegramBotEntitiesEntity;

/**
 * Class InputMediaVideo
 *
 * @link https://core.telegram.org/bots/api#inputmediavideo
 *
 * <code>
 * $data = [
 *   'media'              => '123abc',
 *   'thumbnail'          => '456def',
 *   'caption'            => '*Video* caption (streamable)',
 *   'parse_mode'         => 'markdown',
 *   'width'              => 800,
 *   'height'             => 600,
 *   'duration'           => 42,
 *   'supports_streaming' => true,
 * ];
 * </code>
 *
 * @method string          getType()              Type of the result, must be video
 * @method string          getMedia()             File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name.
 * @method string          getThumbnail()         Optional. Thumbnail of the file sent. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail‘s width and height should not exceed 90. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can’t be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More info on Sending Files »
 * @method string          getCaption()           Optional. Caption of the video to be sent, 0-200 characters
 * @method string          getParseMode()         Optional. Mode for parsing entities in the video caption
 * @method MessageEntity[] getCaptionEntities()   Optional. List of special entities that appear in the caption, which can be specified instead of parse_mode
 * @method int             getWidth()             Optional. Video width
 * @method int             getHeight()            Optional. Video height
 * @method int             getDuration()          Optional. Video duration
 * @method bool            getSupportsStreaming() Optional. Pass True, if the uploaded video is suitable for streaming
 * @method bool            getHasSpoiler()        Optional. Pass True if the video needs to be covered with a spoiler animation
 *
 * @method $this setMedia(string $media)                        File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name.
 * @method $this setThumbnail(string $thumbnail)                Optional. Thumbnail of the file sent. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail‘s width and height should not exceed 90. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can’t be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More info on Sending Files »
 * @method $this setCaption(string $caption)                    Optional. Caption of the video to be sent, 0-200 characters
 * @method $this setParseMode(string $parse_mode)               Optional. Mode for parsing entities in the video caption
 * @method $this setCaptionEntities(array $caption_entities)    Optional. List of special entities that appear in the caption, which can be specified instead of parse_mode
 * @method $this setWidth(int $width)                           Optional. Video width
 * @method $this setHeight(int $height)                         Optional. Video height
 * @method $this setDuration(int $duration)                     Optional. Video duration
 * @method $this setSupportsStreaming(bool $supports_streaming) Optional. Pass True, if the uploaded video is suitable for streaming
 * @method $this setHasSpoiler(bool $has_spoiler)               Optional. Pass True if the video needs to be covered with a spoiler animation
 */
class InputMediaVideo extends Entity implements InputMedia
{
    
/**
     * InputMediaVideo constructor
     *
     * @param array $data
     */
    
public function __construct(array $data = [])
    {
        
$data['type'] = 'video';
        
parent::__construct($data);
    }
}
Онлайн: 2
Реклама