36 lines
933 B
C#
36 lines
933 B
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipaySecurityRiskVerifyidentityConfirmModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class AlipaySecurityRiskVerifyidentityConfirmModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接入业务方业务唯一性id
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("biz_id")]
|
|||
|
|
public string BizId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 附加业务信息,Json结构
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("biz_params")]
|
|||
|
|
public string BizParams { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 身份核验场景CODE,商务谈判基础上,由支付宝来分配。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("scene_code")]
|
|||
|
|
public string SceneCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 核身校验token,是一次核身校验服务中唯一性的token
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("verify_token")]
|
|||
|
|
public string VerifyToken { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|