OpenFeedInfoModel.php 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /**
  3. * 返回值model
  4. * @author auto create
  5. */
  6. class OpenFeedInfoModel
  7. {
  8. /**
  9. * 主播uid
  10. **/
  11. public $anchor_id;
  12. /**
  13. * 绑定群的cid列表
  14. **/
  15. public $chat_ids;
  16. /**
  17. * 封面链接
  18. **/
  19. public $cover_url;
  20. /**
  21. * 直播时长(毫秒)
  22. **/
  23. public $duration;
  24. /**
  25. * 剪辑过后的视频回放地址(含authkey,若空则代表没有经过剪辑)
  26. **/
  27. public $edit_replay_url;
  28. /**
  29. * 直播结束时间
  30. **/
  31. public $end_time;
  32. /**
  33. * 课程id
  34. **/
  35. public $feed_id;
  36. /**
  37. * 课程类型
  38. **/
  39. public $feed_type;
  40. /**
  41. * 是否有回放保存
  42. **/
  43. public $has_play_back;
  44. /**
  45. * 简介
  46. **/
  47. public $introduction;
  48. /**
  49. * 跳转链接
  50. **/
  51. public $jump_url;
  52. /**
  53. * 回放拉流地址(含authkey)
  54. **/
  55. public $replay_url;
  56. /**
  57. * 开始时间
  58. **/
  59. public $start_time;
  60. /**
  61. * 课程状态
  62. **/
  63. public $status;
  64. /**
  65. * 直播状态
  66. **/
  67. public $sub_status;
  68. /**
  69. * 课程标题
  70. **/
  71. public $title;
  72. }
  73. ?>