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