using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiLiveGroupliveListResponse. /// public class OapiLiveGroupliveListResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 返回列表 /// [XmlArray("result")] [XmlArrayItem("result")] public List Result { get; set; } /// /// ResultDomain Data Structure. /// [Serializable] public class ResultDomain : TopObject { /// /// 群id /// [XmlElement("cid")] public long Cid { get; set; } /// /// 时长 /// [XmlElement("duration")] public long Duration { get; set; } /// /// 是否横屏 /// [XmlElement("is_landscape")] public bool IsLandscape { get; set; } /// /// 直播id /// [XmlElement("live_uuid")] public string LiveUuid { get; set; } /// /// openid /// [XmlElement("open_id")] public long OpenId { get; set; } /// /// 开始时间ms /// [XmlElement("start_time")] public long StartTime { get; set; } /// /// 标题 /// [XmlElement("title")] public string Title { get; set; } } } }