using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InstallmentValue Data Structure.
///
[Serializable]
public class InstallmentValue : AopObject
{
///
/// 分段值
///
[JsonProperty("installment_values")]
public List InstallmentValues { get; set; }
}
}