namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
///
/// 表示 [POST] /wxa/business/insurance_freight/applypay 接口的请求。
///
public class WxaBusinessInsuranceFreightApplyPayRequest : WechatApiRequest, IInferable
{
///
/// 获取或设置充值订单 ID。
///
[Newtonsoft.Json.JsonProperty("order_id")]
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
public string OrderId { get; set; } = string.Empty;
}
}