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

24 lines
870 B
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>
/// ZhimaCreditScoreGetModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditScoreGetModel : AopObject
{
/// <summary>
/// 产品码,直接使用[示例]给出的值
/// </summary>
[JsonProperty("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 商户请求的唯一标志64位长度的字母数字下划线组合。该标识作为对账的关键信息商户要保证其唯一性对于用户使用相同transaction_id的查询芝麻在一天86400秒内返回首次查询数据超过有效期的查询即为无效并返回异常有效期内的重复查询不重新计费
/// </summary>
[JsonProperty("transaction_id")]
public string TransactionId { get; set; }
}
}