using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayFundBatchCloseResponse. /// public class AlipayFundBatchCloseResponse : AopResponse { /// /// 支付宝内部的批次ID /// [XmlElement("batch_trans_id")] public string BatchTransId { get; set; } /// /// DISUSE:批次废弃 /// [XmlElement("status")] public string Status { get; set; } } }