using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayDataAiserviceSmartpriceMerchanteffectQueryResponse. /// public class AlipayDataAiserviceSmartpriceMerchanteffectQueryResponse : AopResponse { /// /// 商家效果展示列表返回值 /// [XmlArray("result")] [XmlArrayItem("merchant_effect_query_result")] public List Result { get; set; } /// /// 最小定价单元,返回为""代表统计了该商户下所有定价单元指标之和 /// [XmlElement("unit_id")] public string UnitId { get; set; } } }