NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailInstanceTransfe...

27 lines
844 B
C#
Raw 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>
/// KoubeiRetailInstanceTransferModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailInstanceTransferModel : AopObject
{
/// <summary>
/// 置顶的券id列表信息id的顺序指定置顶的券的顺序如果空表示将原先的id删除。列表数量限制为20
/// </summary>
[XmlArray("instance_id_list")]
[XmlArrayItem("string")]
public List<string> InstanceIdList { get; set; }
/// <summary>
/// 券或者电子DM单VOUCHER、DM如果字段为空默认为VOUCHER类型
/// </summary>
[XmlElement("instance_type")]
public string InstanceType { get; set; }
}
}