using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiAttendanceGroupsKeytoidResponse. /// public class OapiAttendanceGroupsKeytoidResponse : DingTalkResponse { /// /// 调用错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 服务的错误返回信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 服务结果 /// [XmlElement("result")] public long Result { get; set; } /// /// 调用结果 /// [XmlElement("success")] public bool Success { get; set; } } }