using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiOpenencryptEncryptboxStatusUpdateResponse. /// public class OapiOpenencryptEncryptboxStatusUpdateResponse : DingTalkResponse { /// /// 内部错误 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误消息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 一般是空字符串 /// [XmlElement("result")] public string Result { get; set; } /// /// 误接口状态标记 /// [XmlElement("success")] public bool Success { get; set; } } }