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.

24 lines
904 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMarketingCdpRecommendQueryResponse.
/// </summary>
public class AlipayMarketingCdpRecommendQueryResponse : AopResponse
{
/// <summary>
/// 当前推荐的唯一标识,用于不同方案的效果跟踪
/// </summary>
[XmlElement("recommend_id")]
public string RecommendId { get; set; }
/// <summary>
/// 商家信息列表最多返回20条返回json数组包含shopTitle=店名cuisine=菜系address=具体位置bizCircle=所属商圈discount=优惠orderCount=已领/已享人数avgPrice=人均价格starLevel=评分distance=距离(单位米)。以上属性可以为空或不存在
/// </summary>
[XmlElement("shop_info")]
public string ShopInfo { get; set; }
}
}