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