初始提交
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// SsdataDataserviceRiskRainscoreQueryModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class SsdataDataserviceRiskRainscoreQueryModel : 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user