Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SsdataDataserviceRiskAntiscalperQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

60 lines
1.5 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>
/// SsdataDataserviceRiskAntiscalperQueryModel Data Structure.
/// </summary>
[Serializable]
public class SsdataDataserviceRiskAntiscalperQueryModel : 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; }
}
}