NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditScoreBriefGetMod...

55 lines
2.1 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>
/// ZhimaCreditScoreBriefGetModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditScoreBriefGetModel : AopObject
{
/// <summary>
/// 350950之间 业务判断的准入标准 建议业务确定一个稳定的判断标准 频繁的变更该标准可能导致接口被停用
/// </summary>
[XmlElement("admittance_score")]
public long AdmittanceScore { get; set; }
/// <summary>
/// 对应的证件号(未脱敏)或支付宝uid
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型 目前支持三种IDENTITY_CARD(身份证),PASSPORT(护照),ALIPAY_USER_ID(支付宝uid)
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 芝麻平台服务商模式下的二级商户标识,如果是直连商户调用该接口,不需要设置
/// </summary>
[XmlElement("linked_merchant_id")]
public string LinkedMerchantId { get; set; }
/// <summary>
/// 用户姓名 当证件类型为ALIPAY_USER_ID时不需要传入
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 产品码,直接使用[示例]给出的值
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 商户请求的唯一标志64位长度的字母数字下划线组合。该标识作为对账的关键信息商户要保证其唯一性对于用户使用相同transaction_id的查询芝麻在一天86400秒内返回首次查询数据超过有效期的查询即为无效并返回异常有效期内的重复查询不重新计费
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
}
}