Files
DotNetCore.SKIT.FlurlHttpCl…/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Card/CardLandingPageCreateResponse.cs
2024-02-07 18:03:28 +08:00

24 lines
893 B
C#

namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /card/landingpage/create 接口的响应。</para>
/// </summary>
public class CardLandingPageCreateResponse : WechatApiResponse
{
/// <summary>
/// 获取或设置货架 ID。
/// </summary>
[Newtonsoft.Json.JsonProperty("page_id")]
[System.Text.Json.Serialization.JsonPropertyName("page_id")]
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalStringConverter))]
public string PageId { get; set; } = default!;
/// <summary>
/// 获取或设置货架链接。
/// </summary>
[Newtonsoft.Json.JsonProperty("url")]
[System.Text.Json.Serialization.JsonPropertyName("url")]
public string PageUrl { get; set; } = default!;
}
}