using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiEduStudentAttendanceStatisticsGetResponse.
///
public class OapiEduStudentAttendanceStatisticsGetResponse : DingTalkResponse
{
///
/// 错误编码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// result
///
[XmlElement("result")]
public GetStudentAttendanceStatisticsResponseDomain Result { get; set; }
///
/// 请求是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// GetStudentAttendanceStatisticsResponseDomain Data Structure.
///
[Serializable]
public class GetStudentAttendanceStatisticsResponseDomain : TopObject
{
///
/// 数据(key:统计项名称,value: 统计数量)
///
[XmlElement("data")]
public string Data { get; set; }
}
}
}