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/shelf/del 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-10-31 22:55:40 +08:00
|
|
|
|
[Obsolete("相关接口或字段于 2020-10-01 下线。")]
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class MerchantShelfDeleteRequest : WechatApiRequest, IInferable<MerchantShelfDeleteRequest, MerchantShelfDeleteResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置货架 ID。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("shelf_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("shelf_id")]
|
2022-11-03 21:34:33 +08:00
|
|
|
|
public long ShelfId { get; set; }
|
2021-05-28 19:23:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|