using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiOpenencryptRotateedkResponse. /// public class OapiOpenencryptRotateedkResponse : 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; } } }