using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayMarketingVoucherStockMatchModel Data Structure.
///
[Serializable]
public class AlipayMarketingVoucherStockMatchModel : AopObject
{
///
/// 待核查券码列表,商户体系内可兑换使用的券码
///
[XmlArray("entity_list")]
[XmlArrayItem("string")]
public List EntityList { get; set; }
///
/// 库存ID,创建库存时返回
///
[XmlElement("stock_id")]
public string StockId { get; set; }
}
}