24 lines
558 B
C#
24 lines
558 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipaySecurityRiskPolicyConfirmModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipaySecurityRiskPolicyConfirmModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 二次确认参数,防止篡改
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("confirm_params")]
|
||
|
|
public string ConfirmParams { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 安全请求生成的唯一ID
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("security_id")]
|
||
|
|
public string SecurityId { get; set; }
|
||
|
|
}
|
||
|
|
}
|