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

42 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 System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayCreditAutofinanceLoanCloseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCreditAutofinanceLoanCloseModel : AopObject
{
/// <summary>
/// 汽车金融内部订单号
/// </summary>
[JsonProperty("applyno")]
public string Applyno { get; set; }
/// <summary>
/// 机构编号
/// </summary>
[JsonProperty("orgcode")]
public string Orgcode { get; set; }
/// <summary>
/// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线需保证在外部平台端不重复
/// </summary>
[JsonProperty("outorderno")]
public string Outorderno { get; set; }
/// <summary>
/// 关闭原因
/// </summary>
[JsonProperty("reson")]
public string Reson { get; set; }
/// <summary>
/// 关闭类型 1. CLOSE_USER_CANCEL(用户主动放弃贷款) 2. CLOSE_TD_REJECT(同盾校验失败) 3. CLOSE_OTHER(其他情况)
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}