Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZhimaMerchantOrderRentCreateResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

40 lines
1.1 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZhimaMerchantOrderRentCreateResponse.
/// </summary>
public class ZhimaMerchantOrderRentCreateResponse : AopResponse
{
/// <summary>
/// 是否准入: Y-准入 N-不准入
/// </summary>
[JsonProperty("admit_state")]
public string AdmitState { get; set; }
/// <summary>
/// 商户发起借用服务时,需要在借用结束后返回给商户的参数
/// </summary>
[JsonProperty("invoke_state")]
public string InvokeState { get; set; }
/// <summary>
/// 芝麻信用借还订单号
/// </summary>
[JsonProperty("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 外部订单号需要唯一由商户传入芝麻内部会做幂等控制格式为yyyyMMddHHmmss+4位随机数
/// </summary>
[JsonProperty("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 借用者的userId
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}