NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskRiskprofi...

47 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySecurityRiskRiskprofileQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskRiskprofileQueryModel : AopObject
{
/// <summary>
/// 请求来源,业务唯一标示;
/// </summary>
[XmlElement("request_from")]
public string RequestFrom { get; set; }
/// <summary>
/// 请求唯一ID
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 风险对象枚举 可用值userID,merchantID,tradeNO,phone,bankCard,IDCard,email;注意大小写敏感 枚举含义userID用户merchantID商户tradeNO交易号phone手机号bankCard银行卡IDCard身份证号email邮箱
/// </summary>
[XmlArray("risk_object")]
[XmlArrayItem("string")]
public List<string> RiskObject { get; set; }
/// <summary>
/// 与字段risk_object 对应长度顺序一致,例如 risk_object值为["userID"] 则risk_object_value 值为["208830231508XXXX"];如 risk_object值为["userID",phone] 则risk_object_value 值为["208830231508XXXX","1856343XXXX"];
/// </summary>
[XmlArray("risk_object_value")]
[XmlArrayItem("string")]
public List<string> RiskObjectValue { get; set; }
/// <summary>
/// riskprofile 值接入时咨询业务PD 应该使用的riskprofile
/// </summary>
[XmlArray("risk_profile")]
[XmlArrayItem("string")]
public List<string> RiskProfile { get; set; }
}
}