NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditRiskEvaluateQuer...

37 lines
1.3 KiB
C#
Raw 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>
/// ZhimaCreditRiskEvaluateQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditRiskEvaluateQueryModel : AopObject
{
/// <summary>
/// 扩展字段用来标识用户的其他描述信息是一个JSON串
/// </summary>
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
/// <summary>
/// 产品码[直接传示例值]
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 场景码,用来标识一套特定的风控策略
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 商户请求的唯一标志长度64位以内字符串仅限字母数字下划线组合。该标识作为业务调用的唯一标识商户要保证其业务唯一性使用相同transaction_id的查询芝麻在一段时间内一般为1天返回首次查询结果超过有效期的查询即为无效并返回异常有效期内的重复查询不重新计费
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
}
}