using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiAttendanceListResponse. /// public class OapiAttendanceListResponse : DingTalkResponse { /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// hasMore /// [XmlElement("hasMore")] public bool HasMore { get; set; } /// /// recordresult /// [XmlArray("recordresult")] [XmlArrayItem("recordresult")] public List Recordresult { get; set; } /// /// RecordresultDomain Data Structure. /// [Serializable] public class RecordresultDomain : TopObject { /// /// approveId /// [XmlElement("approveId")] public long ApproveId { get; set; } /// /// baseCheckTime /// [XmlElement("baseCheckTime")] public string BaseCheckTime { get; set; } /// /// checkType /// [XmlElement("checkType")] public string CheckType { get; set; } /// /// groupId /// [XmlElement("groupId")] public long GroupId { get; set; } /// /// id /// [XmlElement("id")] public long Id { get; set; } /// /// locationResult /// [XmlElement("locationResult")] public string LocationResult { get; set; } /// /// planId /// [XmlElement("planId")] public long PlanId { get; set; } /// /// procInstId /// [XmlElement("procInstId")] public string ProcInstId { get; set; } /// /// recordId /// [XmlElement("recordId")] public long RecordId { get; set; } /// /// sourceType /// [XmlElement("sourceType")] public string SourceType { get; set; } /// /// timeResult /// [XmlElement("timeResult")] public string TimeResult { get; set; } /// /// userCheckTime /// [XmlElement("userCheckTime")] public string UserCheckTime { get; set; } /// /// userId /// [XmlElement("userId")] public string UserId { get; set; } /// /// workDate /// [XmlElement("workDate")] public string WorkDate { get; set; } } } }