namespace SKIT.FlurlHttpClient.Wechat.Work.Events
{
///
/// 表示 EVENT.living_status_change 事件的数据。
/// REF: https://developer.work.weixin.qq.com/document/path/94145
/// REF: https://developer.work.weixin.qq.com/document/path/94308
///
public class LivingStatusChangeEvent : WechatWorkEvent
{
///
/// 获取或设置应用 ID。
///
[Newtonsoft.Json.JsonProperty("AgentID")]
[System.Text.Json.Serialization.JsonPropertyName("AgentID")]
[System.Xml.Serialization.XmlElement("AgentID")]
public int AgentId { get; set; }
///
/// 获取或设置直播 ID。
///
[Newtonsoft.Json.JsonProperty("LivingId")]
[System.Text.Json.Serialization.JsonPropertyName("LivingId")]
[System.Xml.Serialization.XmlElement("LivingId")]
public string LivingId { get; set; } = default!;
///
/// 获取或设置直播状态。
///
[Newtonsoft.Json.JsonProperty("Status")]
[System.Text.Json.Serialization.JsonPropertyName("Status")]
[System.Xml.Serialization.XmlElement("Status")]
public int Status { get; set; }
}
}