using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// SettleInfo Data Structure. /// [Serializable] public class SettleInfo : AopObject { /// /// 结算详细信息,json数组,目前只支持一条。 /// [XmlArray("settle_detail_infos")] [XmlArrayItem("settle_detail_info")] public List SettleDetailInfos { get; set; } /// /// 该笔订单的超期自动确认结算时间,到达期限后,将自动确认结算。此字段只在签约账期结算模式时有效。取值范围:1d~365d。d-天。 该参数数值不接受小数点。 /// [XmlElement("settle_period_time")] public string SettlePeriodTime { get; set; } } }