NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiTradeKbdeliveryDelive...

49 lines
1.8 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiTradeKbdeliveryDeliveryApplyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiTradeKbdeliveryDeliveryApplyModel : AopObject
{
/// <summary>
/// 附加数据在查询API和物流变更通知回执中原样返回该字段主要用于第三方系统携带订单的自定义数据
/// </summary>
[XmlElement("attach")]
public string Attach { get; set; }
/// <summary>
/// 物流请求扩展信息,详细见模型字段说明; 在CUPBOARD取餐柜模式 必填 在CUPBOARD取餐柜模式 场景支持2种模式单元格分配规则2选1 分配规则1指定设备编号+指定单元格编号 分配规则2指定申请单元格数量自动分配 两者都传入优先按分配规则1处理
/// </summary>
[XmlElement("logistics_external_info")]
public LogisticsExternalInfo LogisticsExternalInfo { get; set; }
/// <summary>
/// 物流类型,仅可填入可支持的物流类型,可支持的类型如下: CUPBOARD取餐柜模式 COMMON骑手配送模式
/// </summary>
[XmlElement("logistics_type")]
public string LogisticsType { get; set; }
/// <summary>
/// 口碑交易订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 备注信息
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 请求id唯一标识一次请求
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}