2022-01-14 14:37:52 +08:00
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /card/giftcard/page/get 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class CardGiftCardPageGetRequest : WechatApiRequest, IInferable<CardGiftCardPageGetRequest, CardGiftCardPageGetResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置货架 ID。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("page_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("page_id")]
|
2021-05-30 23:11:22 +08:00
|
|
|
|
public string PageId { get; set; } = string.Empty;
|
2021-05-28 19:23:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|