using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiHealthStepinfoListbyuseridResponse.
///
public class OapiHealthStepinfoListbyuseridResponse : DingTalkResponse
{
///
/// errcode
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// errmsg
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 步数列表
///
[XmlArray("stepinfo_list")]
[XmlArrayItem("basic_step_info_vo")]
public List StepinfoList { get; set; }
///
/// BasicStepInfoVoDomain Data Structure.
///
[Serializable]
public class BasicStepInfoVoDomain : TopObject
{
///
/// 统计的时间
///
[XmlElement("stat_date")]
public long StatDate { get; set; }
///
/// 步数
///
[XmlElement("step_count")]
public long StepCount { get; set; }
///
/// 员工userid
///
[XmlElement("userid")]
public string Userid { get; set; }
}
}
}