using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiAuthorizationRbacRoleCreateResponse. /// public class OapiAuthorizationRbacRoleCreateResponse : DingTalkResponse { /// /// 系统自动生成 /// [XmlElement("result")] public DingOpenResultDomain Result { get; set; } /// /// DingOpenResultDomain Data Structure. /// [Serializable] public class DingOpenResultDomain : TopObject { /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// erromsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 管理组id /// [XmlElement("result")] public string Result { get; set; } /// /// 请求状态 /// [XmlElement("success")] public bool Success { get; set; } } } }