namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
{
///
/// 表示 [POST] /deposit/reverse 接口的响应。
///
public class ReverseDepositOrderResponse : WechatTenpaySignableResponse
{
///
///
///
[Newtonsoft.Json.JsonProperty("mch_id")]
[System.Text.Json.Serialization.JsonPropertyName("mch_id")]
public override string? MerchantId { get; set; }
///
///
///
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public override string? AppId { get; set; }
///
/// 获取或设置子商户号。
///
[Newtonsoft.Json.JsonProperty("sub_mch_id")]
[System.Text.Json.Serialization.JsonPropertyName("sub_mch_id")]
public string? SubMerchantId { get; set; }
///
/// 获取或设置子商户 AppId。
///
[Newtonsoft.Json.JsonProperty("sub_appid")]
[System.Text.Json.Serialization.JsonPropertyName("sub_appid")]
public string? SubAppId { get; set; }
}
}