NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailKbcodeCreateMod...

39 lines
1.2 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>
/// KoubeiRetailKbcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailKbcodeCreateModel : AopObject
{
/// <summary>
/// 口碑码绑定的附加信息列表最大数量150
/// </summary>
[XmlArray("code_info_list")]
[XmlArrayItem("retail_kbcode_create_vo")]
public List<RetailKbcodeCreateVo> CodeInfoList { get; set; }
/// <summary>
/// 物料模板口碑码的背景图目前仅支持RETAIL_PASTER_296_320
/// </summary>
[XmlElement("code_template")]
public string CodeTemplate { get; set; }
/// <summary>
/// 生成码的类型当前仅支持品牌商促销员码KOUBEI_SALESMAN_CODEC
/// </summary>
[XmlElement("code_type")]
public string CodeType { get; set; }
/// <summary>
/// 请求流水ID可用于幂等控制建议使用UUID做幂等控制
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}