NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiAdvertDeliveryDiscoun...

25 lines
691 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiAdvertDeliveryDiscountGetResponse.
/// </summary>
public class KoubeiAdvertDeliveryDiscountGetResponse : AopResponse
{
/// <summary>
/// 广告推荐的商品信息列表个数小于等于请求中参数“size”个数
/// </summary>
[XmlElement("discounts")]
public DiscountInfo Discounts { get; set; }
/// <summary>
/// 本次推荐的唯一标识, 此字段需回传
/// </summary>
[XmlElement("recommend_id")]
public string RecommendId { get; set; }
}
}