using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiSmartworkHrmEmployeeUnionexportResponse. /// public class OapiSmartworkHrmEmployeeUnionexportResponse : DingTalkResponse { /// /// 错误code /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误码 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 是否成功 /// [XmlElement("is_success")] public bool IsSuccess { get; set; } /// /// 导出结果对象 /// [XmlElement("result")] public ExportRsultDomain Result { get; set; } /// /// ExportRsultDomain Data Structure. /// [Serializable] public class ExportRsultDomain : TopObject { /// /// 导出记录id /// [XmlElement("export_id")] public string ExportId { get; set; } } } }