using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayAccountExrateRatequeryResponse. /// public class AlipayAccountExrateRatequeryResponse : AopResponse { /// /// 查询到的汇率对象列表,如果没有查询到则返回空列表 /// [JsonProperty("rate_query_response_list")] public List RateQueryResponseList { get; set; } } }