2022-10-31 22:55:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /merchant/order/close 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-10-31 22:55:40 +08:00
|
|
|
|
[Obsolete("相关接口或字段于 2020-10-01 下线。")]
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class MerchantOrderCloseRequest : WechatApiRequest, IInferable<MerchantOrderCloseRequest, MerchantOrderCloseResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置订单号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("order_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
|
|
|
|
|
public string OrderId { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|