using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipaySecurityRiskDirectionalIpprofileQueryModel Data Structure.
///
[Serializable]
public class AlipaySecurityRiskDirectionalIpprofileQueryModel : AopObject
{
///
/// 身份证号码,非必填参数,用于查询"身份证持有人使用当前IP的概率"属性
///
[JsonProperty("cert_no")]
public string CertNo { get; set; }
///
/// IP地址,IP检测服务接口主键,必填
///
[JsonProperty("ip_address")]
public string IpAddress { get; set; }
///
/// 手机号码,非必填参数,用于用户更多维度的识别,如"手机号持有人使用当前IP的概率"属性等
///
[JsonProperty("phone")]
public string Phone { get; set; }
}
}