ShortVideo.php 723 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*
  3. * This file is part of the overtrue/wechat.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. /**
  11. * ShortVideo.php.
  12. *
  13. * @author overtrue <i@overtrue.me>
  14. * @copyright 2015 overtrue <i@overtrue.me>
  15. *
  16. * @see https://github.com/overtrue
  17. * @see http://overtrue.me
  18. */
  19. namespace EasyWeChat\Message;
  20. /**
  21. * Class ShortVideo.
  22. *
  23. * @property string $title
  24. * @property string $media_id
  25. * @property string $description
  26. * @property string $thumb_media_id
  27. */
  28. class ShortVideo extends Video
  29. {
  30. /**
  31. * Message type.
  32. *
  33. * @var string
  34. */
  35. protected $type = 'shortvideo';
  36. }