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