using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiPlanetomFeedsStatisticGetResponse.
///
public class OapiPlanetomFeedsStatisticGetResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 返回值model
///
[XmlElement("result")]
public OpenFeedInfoModelDomain Result { get; set; }
///
/// 是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// OpenFeedInfoModelDomain Data Structure.
///
[Serializable]
public class OpenFeedInfoModelDomain : TopObject
{
///
/// 主播uid
///
[XmlElement("anchor_id")]
public string AnchorId { get; set; }
///
/// 绑定群的cid列表
///
[XmlArray("chat_ids")]
[XmlArrayItem("string")]
public List ChatIds { get; set; }
///
/// 封面链接
///
[XmlElement("cover_url")]
public string CoverUrl { get; set; }
///
/// 直播时长(毫秒)
///
[XmlElement("duration")]
public long Duration { get; set; }
///
/// 剪辑过后的视频回放地址(含authkey,若空则代表没有经过剪辑)
///
[XmlElement("edit_replay_url")]
public string EditReplayUrl { get; set; }
///
/// 直播结束时间
///
[XmlElement("end_time")]
public string EndTime { get; set; }
///
/// 课程id
///
[XmlElement("feed_id")]
public string FeedId { get; set; }
///
/// 课程类型
///
[XmlElement("feed_type")]
public long FeedType { get; set; }
///
/// 是否有回放保存
///
[XmlElement("has_play_back")]
public bool HasPlayBack { get; set; }
///
/// 简介
///
[XmlElement("introduction")]
public string Introduction { get; set; }
///
/// 跳转链接
///
[XmlElement("jump_url")]
public string JumpUrl { get; set; }
///
/// 回放拉流地址(含authkey)
///
[XmlElement("replay_url")]
public string ReplayUrl { get; set; }
///
/// 开始时间
///
[XmlElement("start_time")]
public string StartTime { get; set; }
///
/// 课程状态
///
[XmlElement("status")]
public long Status { get; set; }
///
/// 直播状态
///
[XmlElement("sub_status")]
public long SubStatus { get; set; }
///
/// 课程标题
///
[XmlElement("title")]
public string Title { get; set; }
}
}
}