GroupLiveListResult.php 413 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 直播列表
  4. * @author auto create
  5. */
  6. class GroupLiveListResult
  7. {
  8. /**
  9. * 直播时长
  10. **/
  11. public $duration;
  12. /**
  13. * 直播id
  14. **/
  15. public $live_uuid;
  16. /**
  17. * true为被联播群,false为主群
  18. **/
  19. public $share_from;
  20. /**
  21. * 直播开始时间
  22. **/
  23. public $start_time;
  24. /**
  25. * 直播标题
  26. **/
  27. public $title;
  28. /**
  29. * 主播userId
  30. **/
  31. public $userid;
  32. }
  33. ?>