NewGaoKaoApi/PaymentSDK/AliPay/Domain/SsdataDataserviceRiskAntifi...

61 lines
1.6 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;
namespace Aop.Api.Domain
{
/// <summary>
/// SsdataDataserviceRiskAntifinfraudQueryModel Data Structure.
/// </summary>
[Serializable]
public class SsdataDataserviceRiskAntifinfraudQueryModel : AopObject
{
/// <summary>
/// 行为发生时的Apdid值
/// </summary>
[XmlElement("apdid")]
public string Apdid { get; set; }
/// <summary>
/// 行为发生时的IP值
/// </summary>
[XmlElement("ip")]
public string Ip { get; set; }
/// <summary>
/// 调用服务的商户id 如果是第三方服务商需要将其实际的商户id透传过来如果是普通商户传入自己的appid或不填
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 行为发生时的手机号
/// </summary>
[XmlElement("phone")]
public string Phone { get; set; }
/// <summary>
/// 风险场景码
/// </summary>
[XmlElement("risk_code")]
public string RiskCode { get; set; }
/// <summary>
/// 业务场景
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 版本号
/// </summary>
[XmlElement("sys_version")]
public string SysVersion { get; set; }
/// <summary>
/// 行为发生时的UMID值
/// </summary>
[XmlElement("umid")]
public string Umid { get; set; }
}
}