using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiAtsPluginDataPushResponse.
///
public class OapiAtsPluginDataPushResponse : DingTalkResponse
{
///
/// 系统自动生成
///
[XmlElement("result")]
public DingOpenResultDomain Result { get; set; }
///
/// DingOpenResultDomain Data Structure.
///
[Serializable]
public class DingOpenResultDomain : TopObject
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 数据ID
///
[XmlElement("result")]
public string Result { get; set; }
}
}
}