NewGaoKaoApi/PaymentSDK/AliPay/Domain/LoanPayInstallment.cs

37 lines
938 B
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>
/// LoanPayInstallment Data Structure.
/// </summary>
[Serializable]
public class LoanPayInstallment : AopObject
{
/// <summary>
/// 摘要要素为JSON大字段
/// </summary>
[XmlElement("base_element")]
public string BaseElement { get; set; }
/// <summary>
/// 分期要素详情为JSON大字段
/// </summary>
[XmlElement("details_element")]
public string DetailsElement { get; set; }
/// <summary>
/// 扩展要素为JSONArray大字段
/// </summary>
[XmlElement("extends_element")]
public string ExtendsElement { get; set; }
/// <summary>
/// 分期id
/// </summary>
[XmlElement("installment_id")]
public string InstallmentId { get; set; }
}
}