using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcapiprodDrawndnDrawndnlistQueryResponse. /// public class AlipayEcapiprodDrawndnDrawndnlistQueryResponse : AopResponse { /// /// 支用列表 /// [XmlArray("drawndn_list")] [XmlArrayItem("drawndn_vo")] public List DrawndnList { get; set; } /// /// 唯一一次请求标示 /// [XmlElement("request_id")] public string RequestId { get; set; } } }