using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiWorkspaceProjectNoticeSendResponse.
///
public class OapiWorkspaceProjectNoticeSendResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 发送结果
///
[XmlElement("result")]
public OpenSendNoticeResponseDtoDomain Result { get; set; }
///
/// 请求成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// OpenSendNoticeResponseDtoDomain Data Structure.
///
[Serializable]
public class OpenSendNoticeResponseDtoDomain : TopObject
{
///
/// 被发送额度控制的userids
///
[XmlArray("limit_userids")]
[XmlArrayItem("string")]
public List LimitUserids { get; set; }
}
}
}