接口文件
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user