60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
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; }
|
||
}
|
||
} |