using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySecurityRiskRainscoreQueryModel Data Structure. /// [Serializable] public class AlipaySecurityRiskRainscoreQueryModel : AopObject { /// /// 帐号内容,目前为中国大陆手机号(11位阿拉伯数字,不包含特殊符号或空格) /// [XmlElement("account")] public string Account { get; set; } /// /// 账号类型,目前仅支持手机号(MOBILE_NO) /// [XmlElement("account_type")] public string AccountType { get; set; } /// /// 调用服务的商户id ,如果是第三方服务商,需要将其实际的商户id透传过来,如果是普通商户传入自己的appid即可 /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// “蚁盾”风险评分服务版本号,当前版本为2.0 /// [XmlElement("version")] public string Version { get; set; } } }