NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiTradeKbdeliveryDelive...

37 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 Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiTradeKbdeliveryDeliveryApplyResponse.
/// </summary>
public class KoubeiTradeKbdeliveryDeliveryApplyResponse : AopResponse
{
/// <summary>
/// 附加数据在查询API和物流变更通知回执中原样返回该字段主要用于第三方系统携带订单的自定义数据
/// </summary>
[XmlElement("attach")]
public string Attach { get; set; }
/// <summary>
/// 物流单成功创建时间 时间格式yyyyMMddHHmmss
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 返回物流载体信息; 在取餐柜模式下,为返回申请的设备信息
/// </summary>
[XmlElement("logistics_external_info")]
public LogisticsExternalInfo LogisticsExternalInfo { get; set; }
/// <summary>
/// 口碑物流单,单号;
/// </summary>
[XmlElement("logistics_order_no")]
public string LogisticsOrderNo { get; set; }
}
}