12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * 直播列表
- * @author auto create
- */
- class GroupLiveListResult
- {
-
- /**
- * 直播时长
- **/
- public $duration;
-
- /**
- * 直播id
- **/
- public $live_uuid;
-
- /**
- * true为被联播群,false为主群
- **/
- public $share_from;
-
- /**
- * 直播开始时间
- **/
- public $start_time;
-
- /**
- * 直播标题
- **/
- public $title;
-
- /**
- * 主播userId
- **/
- public $userid;
- }
- ?>
|