using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiCspaceAuthUpdateResponse. /// public class OapiCspaceAuthUpdateResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果 /// [XmlElement("result")] public IsvAuthCodeResultDomain Result { get; set; } /// /// 请求是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// IsvAuthCodeResultDomain Data Structure. /// [Serializable] public class IsvAuthCodeResultDomain : TopObject { /// /// 授权码有效期,unix时间戳,单位ms /// [XmlElement("expire_time")] public string ExpireTime { get; set; } /// /// 授权码 /// [XmlElement("isv_code")] public string IsvCode { get; set; } } } }