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

30 lines
876 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>
/// AlipaySecurityRiskDirectionalIpprofileQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskDirectionalIpprofileQueryModel : AopObject
{
/// <summary>
/// 身份证号码,非必填参数,用于查询"身份证持有人使用当前IP的概率"属性
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// IP地址IP检测服务接口主键必填
/// </summary>
[JsonProperty("ip_address")]
public string IpAddress { get; set; }
/// <summary>
/// 手机号码,非必填参数,用于用户更多维度的识别,如"手机号持有人使用当前IP的概率"属性等
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
}
}