You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
814 B
C#

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