using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PaymentSchedule Data Structure.
///
[Serializable]
public class PaymentSchedule : AopObject
{
///
/// 还款日
///
[JsonProperty("date")]
public string Date { get; set; }
///
/// 已还利息总和,单位为元,小数点保留2位
///
[JsonProperty("repaid_interest_total")]
public string RepaidInterestTotal { get; set; }
///
/// 已还罚息总和,单位为元,小数点保留2位
///
[JsonProperty("repaid_penalty_total")]
public string RepaidPenaltyTotal { get; set; }
///
/// 已还本金总和,单位为元,小数点保留2位
///
[JsonProperty("repaid_principal_total")]
public string RepaidPrincipalTotal { get; set; }
///
/// 期初时间
///
[JsonProperty("start_date")]
public string StartDate { get; set; }
///
/// 期次
///
[JsonProperty("term")]
public long Term { get; set; }
///
/// 应还利息总和,单位为元,小数点保留2位
///
[JsonProperty("unpaid_interest_total")]
public string UnpaidInterestTotal { get; set; }
///
/// 应还罚息总和,单位为元,小数点保留2位
///
[JsonProperty("unpaid_penalty_total")]
public string UnpaidPenaltyTotal { get; set; }
///
/// 应还本金总和,单位为元,小数点保留2位
///
[JsonProperty("unpaid_principal_total")]
public string UnpaidPrincipalTotal { get; set; }
}
}