NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketingVouch...

49 lines
1.3 KiB
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.Domain
{
/// <summary>
/// AlipayOfflineMarketingVoucherCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineMarketingVoucherCreateModel : AopObject
{
/// <summary>
/// 预算信息
/// </summary>
[XmlElement("budget_info")]
public BudgetInfo BudgetInfo { get; set; }
/// <summary>
/// 券码池编号。该值调用alipay.offline.marketing.voucher.code.upload接口生成
/// </summary>
[XmlElement("code_inventory_id")]
public string CodeInventoryId { get; set; }
/// <summary>
/// 扩展参数
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 发放规则信息
/// </summary>
[XmlElement("get_rule")]
public GetRuleInfo GetRule { get; set; }
/// <summary>
/// 外部流水号.需商家自己生成并保证每次请求的唯一性
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 券模板信息
/// </summary>
[XmlElement("voucher_info")]
public VoucherInfo VoucherInfo { get; set; }
}
}