NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingPassShopBind...

33 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMarketingPassShopBindModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingPassShopBindModel : AopObject
{
/// <summary>
/// 当前操作是否为追加门店绑定默认为true代表为追加门店绑定现有的门店列表不变追加绑定本次传入的门店列表 传值为false时则为覆盖更新先删除现有的门店列表再绑定本次传入的门店列表
/// </summary>
[XmlElement("is_appending")]
public bool IsAppending { get; set; }
/// <summary>
/// 门店ID列表1次请求最多传入500家门店超过请设置is_appending为true分批传入绑定 注意若不传门店列表且is_appending为false则表示清空当前绑定门店列表。
/// </summary>
[XmlArray("shop_list")]
[XmlArrayItem("string")]
public List<string> ShopList { get; set; }
/// <summary>
/// 模板ID编号创建模板接口返回的模板ID
/// </summary>
[XmlElement("tpl_id")]
public string TplId { get; set; }
}
}