NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPcreditLoanLoanUnclea...

25 lines
719 B
C#
Raw 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>
/// AlipayPcreditLoanLoanUnclearQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditLoanLoanUnclearQueryModel : AopObject
{
/// <summary>
/// 预算类型,取值{CLEAR, OVD_AND_CURRENT}CLEAR-结清预算, OVD_AND_CURRENT-逾期和当期预算
/// </summary>
[XmlElement("budget_type")]
public string BudgetType { get; set; }
/// <summary>
/// 代表了一次请求,作为业务幂等性控制
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
}
}