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/add 接口的响应。</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CardGiftCardPageAddResponse : WechatApiResponse
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置货架 ID。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("page_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("page_id")]
|
2024-01-29 23:11:56 +08:00
|
|
|
|
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalStringConverter))]
|
2021-05-28 19:23:28 +08:00
|
|
|
|
public string PageId { get; set; } = default!;
|
|
|
|
|
}
|
|
|
|
|
}
|