Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SsdataDataserviceRiskAntifinfraudQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

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