namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Models { /// /// 表示 [GET] /mse-pay/profit-allocations/{payment_id}/amounts 接口的响应。 /// public class GetProfitAllocationAmountByPaymentIdResponse : WechatTenpayBusinessResponse { /// /// 获取或设置微企付支付单号。 /// [Newtonsoft.Json.JsonProperty("payment_id")] [System.Text.Json.Serialization.JsonPropertyName("payment_id")] public string PaymentId { get; set; } = default!; /// /// 获取或设置订单剩余待分金额(单位:分)。 /// [Newtonsoft.Json.JsonProperty("unsplit_amount")] [System.Text.Json.Serialization.JsonPropertyName("unsplit_amount")] public int UnsplitAmount { get; set; } } }