NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayMarketingVoucherStock...

18 lines
554 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>
/// AlipayMarketingVoucherStockUseResponse.
/// </summary>
public class AlipayMarketingVoucherStockUseResponse : AopResponse
{
/// <summary>
/// 返回如果为空说明没有核销成功如果不为空长度一定是28表示的是核销序号。该值唯一对应一个券码即入参中的entity_no
/// </summary>
[XmlElement("voucher_id")]
public string VoucherId { get; set; }
}
}