2022-11-08 19:17:29 +08:00
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// <para>表示 [POST] /xdc/apiv2getsignkey/sign/getsignkey 接口的请求。</para>
|
|
|
|
/// </summary>
|
|
|
|
public class GetSandboxSignKeyRequest : WechatTenpaySignableRequest
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// <inheritdoc/>
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("mch_id")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("mch_id")]
|
|
|
|
public override string? MerchantId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2023-04-04 11:30:57 +08:00
|
|
|
/// <i>(冗余字段,请忽略)</i>
|
2022-11-08 19:17:29 +08:00
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
public override string? AppId { get; set; }
|
|
|
|
}
|
|
|
|
}
|