using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayAccountExrateAllclientrateQueryResponse. /// public class AlipayAccountExrateAllclientrateQueryResponse : AopResponse { /// /// 汇率信息列表 /// [XmlArray("client_rate_list")] [XmlArrayItem("ex_client_rate_v_o")] public List ClientRateList { get; set; } } }