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