using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /card/invoice/reimburse/updatestatusbatch 接口的请求。 /// public class CardInvoiceReimburseUpdateStatusBatchRequest : WechatApiRequest, IMapResponse { public static class Types { public class InvoiceCard : CardInvoiceReimburseGetInvoiceBatchRequest.Types.InvoiceCard { } } /// /// 获取或设置获得发票的用户 OpenId。 /// [Newtonsoft.Json.JsonProperty("openid")] [System.Text.Json.Serialization.JsonPropertyName("openid")] public string OpenId { get; set; } = string.Empty; /// /// 获取或设置发票报销状态。 /// [Newtonsoft.Json.JsonProperty("reimburse_status")] [System.Text.Json.Serialization.JsonPropertyName("reimburse_status")] public string ReimburseStatus { get; set; } = string.Empty; /// /// 获取或设置发票卡券列表。 /// [Newtonsoft.Json.JsonProperty("invoice_list")] [System.Text.Json.Serialization.JsonPropertyName("invoice_list")] public IList InvoiceCardList { get; set; } = new List(); } }