NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialGiftStockUpload...

39 lines
1.5 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySocialGiftStockUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialGiftStockUploadModel : AopObject
{
/// <summary>
/// 券码列表,商户体系内可兑换使用的券码(大小写不敏感)。注意数量必须大于0同时系统会默认trim处理。库存导入接口主要就是导入这些卡码。对于同一批次的幂等。卡码不会重复导入。
/// </summary>
[XmlArray("entity_list")]
[XmlArrayItem("string")]
public List<string> EntityList { get; set; }
/// <summary>
/// 幂等号,请保持唯一, 如果重复则认为重复请求, 可以使用uuid生成或使用商户自己的单据号
/// </summary>
[XmlElement("idempotent_no")]
public string IdempotentNo { get; set; }
/// <summary>
/// 商户再送礼平台的唯一ID用于标识具体的调用业务方需要先在送礼平台进行业务类型的分配之后才看使用。
/// </summary>
[XmlElement("mid")]
public string Mid { get; set; }
/// <summary>
/// 对应送礼平台skuId库存导入必须指定唯一的一个SKUID该id需要送礼平台方先创建相应产品后在通知使用方
/// </summary>
[XmlElement("sku_id")]
public string SkuId { get; set; }
}
}