NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserStepcounterSyncMo...

91 lines
3.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayUserStepcounterSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserStepcounterSyncModel : AopObject
{
/// <summary>
/// 年龄数据。是外部商户系统中录入的用户年龄数据
/// </summary>
[XmlElement("age")]
public long Age { get; set; }
/// <summary>
/// 卡路里。是商户系统通过用户运动设备(如手环)读取到的用户运动卡路里值
/// </summary>
[XmlElement("calorie")]
public string Calorie { get; set; }
/// <summary>
/// 步数。商户系统通过用户运动设备(如手环)读取到的用户当日步数值
/// </summary>
[XmlElement("count")]
public long Count { get; set; }
/// <summary>
/// 业务方标识。步数来源的唯一标识,每一个外部商户都会分配一个业务方标识,请使用钉钉联系支付宝小二骁然获取此标识
/// </summary>
[XmlElement("data_provider")]
public string DataProvider { get; set; }
/// <summary>
/// 运动距离。是外部商户系统从用户设备中读取到的用户步行距离,单位:米
/// </summary>
[XmlElement("distance")]
public long Distance { get; set; }
/// <summary>
/// 身高数据。是外部商户系统中录入的用户身高数据,单位:cm
/// </summary>
[XmlElement("height")]
public string Height { get; set; }
/// <summary>
/// 位置纬度。是商户系统从用户设备中读取到的用户位置纬度必须使用wgs84坐标集
/// </summary>
[XmlElement("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 位置经度。是商户系统从用户客户端设备中读取到的用户位置经度必须使用wgs84坐标集
/// </summary>
[XmlElement("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 商户系统的用户uid。是外部商户系统中的用户唯一id
/// </summary>
[XmlElement("out_user_id")]
public string OutUserId { get; set; }
/// <summary>
/// 步数更新时间。用户步数上报到商户服务端的时间
/// </summary>
[XmlElement("time")]
public string Time { get; set; }
/// <summary>
/// 用户时区。外部商户系统从用户运动设备中读取到的设备时区
/// </summary>
[XmlElement("time_zone")]
public string TimeZone { get; set; }
/// <summary>
/// 支付宝用户id。为2088开头id号需通过alipay.user.userinfo.share接口获取此值
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 体重数据。是外部商户系统中录入的用户体重数据,单位:kg
/// </summary>
[XmlElement("weight")]
public string Weight { get; set; }
}
}