using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobileRecommendGetResponse. /// public class AlipayMobileRecommendGetResponse : AopResponse { /// /// 推荐结果的扩展信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 推荐结果集合, json数组对象, 每个元素至少包含entity_id的属性,其他属性由推荐方案决定。 /// [XmlElement("items")] public string Items { get; set; } /// /// 本次推荐的唯一标识 /// [XmlElement("recommend_id")] public string RecommendId { get; set; } } }