using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiBlackboardListidsResponse.
///
public class OapiBlackboardListidsResponse : DingTalkResponse
{
///
/// 请求失败的错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 请求失败的错误原因
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// success为true时,返回公告id列表。否则值为空
///
[XmlArray("result")]
[XmlArrayItem("string")]
public List Result { get; set; }
///
/// 本次调用是否成功,该值为false时,根据errcode和errMsg排查失败原因
///
[XmlElement("success")]
public bool Success { get; set; }
}
}