Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserCustomerIdentifyModel.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserCustomerIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCustomerIdentifyModel : AopObject
{
/// <summary>
/// 预留参数用于商户区分同一appId下的不同业务场景。默认场景不用传。
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 设备及环境信息
/// </summary>
[JsonProperty("device_info")]
public AlipayUserDeviceInfo DeviceInfo { get; set; }
/// <summary>
/// 预留业务扩展信息
/// </summary>
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 用户主体信息。要求AlipayUserPrincipalInfo中的user_id、mobile、email属性有且只有一个非空。否则接口会忽略除去优先级最高的属性之外的其他属性。
/// </summary>
[JsonProperty("principal")]
public AlipayUserPrincipalInfo Principal { get; set; }
}
}