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