NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingExchangevouc...

31 lines
929 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMarketingExchangevoucherUseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingExchangevoucherUseModel : AopObject
{
/// <summary>
/// 外部业务号用户幂等控制。相同voucher_id和out_biz_no被认为是同一次核销
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 支付宝用户ID 必须保证待使用的券ID归属于该支付宝用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 待使用的券id 来自发券接口alipay.marketing.voucher.send
/// </summary>
[XmlElement("voucher_id")]
public string VoucherId { get; set; }
}
}