Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipaySecurityRiskDirectionalRainscoreQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
838 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipaySecurityRiskDirectionalRainscoreQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskDirectionalRainscoreQueryModel : AopObject
{
/// <summary>
/// 帐号内容目前为中国大陆手机号11位阿拉伯数字不包含特殊符号或空格
/// </summary>
[JsonProperty("account")]
public string Account { get; set; }
/// <summary>
/// 账号类型目前仅支持手机号MOBILE_NO
/// </summary>
[JsonProperty("account_type")]
public string AccountType { get; set; }
/// <summary>
/// “蚁盾”风险评分服务版本号当前版本为2.0
/// </summary>
[JsonProperty("version")]
public string Version { get; set; }
}
}