Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayMobileRecommendGetResponse.cs

28 lines
715 B
C#
Raw Normal View History

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