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

24 lines
643 B
C#
Raw Permalink 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;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiAdvertDeliveryDiscountSendResponse.
/// </summary>
public class KoubeiAdvertDeliveryDiscountSendResponse : AopResponse
{
/// <summary>
/// 权益详细信息: partnerId商户ID用于打开手机钱包券详情
/// </summary>
[XmlElement("benefit_detail")]
public string BenefitDetail { get; set; }
/// <summary>
/// 广告id对应的权益id
/// </summary>
[XmlElement("benefit_id")]
public string BenefitId { get; set; }
}
}