接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserStepcounterQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserStepcounterQueryModel : AopObject
{
/// <summary>
/// 商户要查询步数的日期。如果不传入此参数,则返回用户当日步数。
/// </summary>
[JsonProperty("count_date")]
public string CountDate { get; set; }
/// <summary>
/// 请求方唯一标识。每一个外部商户都会分配一个业务方标识,请使用钉钉联系支付宝小二骁然获取此标识。
/// </summary>
[JsonProperty("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 商户要查询步数的时区,此参数只在查询当日用户步数时有效。若此参数为空,则以用户当时所在时区返回步数。
/// </summary>
[JsonProperty("time_zone")]
public string TimeZone { get; set; }
/// <summary>
/// 支付宝用户唯一用户id。为2088开头id号需通过alipay.user.userinfo.share接口获取此值
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}