mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
17 lines
596 B
C#
17 lines
596 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||
{
|
||
/// <summary>
|
||
/// <para>表示 [GET] /cgi-bin/ticket/getticket 接口的请求。</para>
|
||
/// </summary>
|
||
public class CgibinTicketGetTicketRequest : WechatApiRequest, IMapResponse<CgibinTicketGetTicketRequest, CgibinTicketGetTicketResponse>
|
||
{
|
||
/// <summary>
|
||
/// 获取或设置票据类型。
|
||
/// <para>默认值:jsapi</para>
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonIgnore]
|
||
[System.Text.Json.Serialization.JsonIgnore]
|
||
public string Type { get; set; } = "jsapi";
|
||
}
|
||
}
|