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/invoice/getauthdata 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class CardInvoiceGetAuthDataRequest : WechatApiRequest, IInferable<CardInvoiceGetAuthDataRequest, CardInvoiceGetAuthDataResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置订单号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("order_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
|
|
|
|
|
public string OrderId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置开票平台或财政局 AppId。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("s_pappid")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("s_pappid")]
|
|
|
|
|
public string SpAppId { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|