Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SsdataDataserviceRiskRainscoreQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
822 B
C#
Raw Permalink 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>
/// 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; }
}
}