NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiTradeTicketTicketcode...

57 lines
1.7 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>
/// KoubeiTradeTicketTicketcodeSendModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiTradeTicketTicketcodeSendModel : AopObject
{
/// <summary>
/// 需要发送的码列表其中code表示串码码值num表示码的可核销份数
/// </summary>
[XmlArray("isv_ma_list")]
[XmlArrayItem("kb_isv_ma_code")]
public List<KbIsvMaCode> IsvMaList { get; set; }
/// <summary>
/// 口碑订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 请求id唯一标识一次请求
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 口碑商品发货单号
/// </summary>
[XmlElement("send_order_no")]
public string SendOrderNo { get; set; }
/// <summary>
/// 口碑发码通知透传码商,码商需要跟发码通知获取到的参数一致
/// </summary>
[XmlElement("send_token")]
public string SendToken { get; set; }
/// <summary>
/// 券过期时间,默认为口碑商品配置失效时间
/// </summary>
[XmlElement("valid_end")]
public string ValidEnd { get; set; }
/// <summary>
/// 券生效时间,默认为口碑商品配置生效时间
/// </summary>
[XmlElement("valid_start")]
public string ValidStart { get; set; }
}
}