using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InstallmentMetaInfo Data Structure.
///
[Serializable]
public class InstallmentMetaInfo : AopObject
{
///
/// 结束期数,包含此值
///
[JsonProperty("end_term")]
public long EndTerm { get; set; }
///
/// 开始期数,包含此值
///
[JsonProperty("start_term")]
public long StartTerm { get; set; }
///
/// 分期值(如还款方式、利率等)
///
[JsonProperty("value")]
public string Value { get; set; }
}
}