NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCreditAutofinanceLoan...

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