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/rejectinsert 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class CardInvoiceRejectInsertRequest : WechatApiRequest, IInferable<CardInvoiceRejectInsertRequest, CardInvoiceRejectInsertResponse>
|
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;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置拒绝原因。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("reason")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("reason")]
|
|
|
|
|
public string Reason { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置跳转页面 URL。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("url")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("url")]
|
|
|
|
|
public string? RedirectUrl { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|