using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ApproveCreditResult Data Structure. /// [Serializable] public class ApproveCreditResult : AopObject { /// /// 费用列表,每个费用对象代码一个收费项; 若费用列表为空或空集合,表示不存在费用定价 /// [JsonProperty("charge_info_list")] public List ChargeInfoList { get; set; } /// /// 授信金额 /// [JsonProperty("credit_amt")] public string CreditAmt { get; set; } /// /// 授信编号 /// [JsonProperty("credit_no")] public string CreditNo { get; set; } /// /// 授信期限长度,包含单位(年、月、日) /// [JsonProperty("credit_term")] public string CreditTerm { get; set; } /// /// 授信有效截止日期(日期精度为天,包含截止日) /// [JsonProperty("expire_date")] public string ExpireDate { get; set; } /// /// 利率 /// [JsonProperty("instal_int_rate")] public List InstalIntRate { get; set; } /// /// 贷款期限长度,包含单位(年、月、日) /// [JsonProperty("loan_term")] public string LoanTerm { get; set; } /// /// 还款方式。若为分段还款,则存储的为分段还款方式的分段值。否则,该list仅含一个元素,为当前的还款方式 /// [JsonProperty("repay_modes")] public List RepayModes { get; set; } /// /// 授信有效起始日期(日期精度为天,包含起始日) /// [JsonProperty("start_date")] public string StartDate { get; set; } /// /// 授信状态 /// [JsonProperty("status")] public string Status { get; set; } } }