xcx_temp_api/Infrastructure/Kuaidi100/Common/Request/internationalshipment/CancelReq.cs
2023-10-20 21:58:42 +08:00

38 lines
1020 B
C#

using Newtonsoft.Json;
namespace Common.Request.internationalshipment
{
public class CancelReq
{
/// <summary>
/// 快遞單號
/// </summary>
public string kuaidicom { get; set; }
/// <summary>
/// 快遞單號
/// </summary>
public string kuaidinum { get; set; }
/// <summary>
/// 訂單id
/// </summary>
public string orderId { get; set; }
/// <summary>
/// 驗證信息
/// </summary>
public ValidateInfo vi { get; set; }
/// <summary>
/// 驗證信息
/// </summary>
public string openid { get; set; }
/// <summary>
/// 取消原因
/// </summary>
public string reason { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
}
}
}