using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// StepcounterDataInfo Data Structure.
///
[Serializable]
public class StepcounterDataInfo : AopObject
{
///
/// 用户的日计步值。为用户某个时区下某个日期的步数总值。
///
[JsonProperty("count")]
public long Count { get; set; }
///
/// 查询到的步数所在日期。
///
[JsonProperty("count_date")]
public string CountDate { get; set; }
///
/// 返回的用户日计步数所在时区。若入参中时区不为空,则此返回与入参相同; 若入参中时区为空,则返回用户设备所在时区步数。
///
[JsonProperty("time_zone")]
public string TimeZone { get; set; }
}
}