feat(wxapi): 随官方更新标准版交易组件注册小程序商店账号接口模型

This commit is contained in:
fudiwei
2022-12-01 22:06:49 +08:00
parent f3e00b6144
commit bd9037f74b
2 changed files with 11 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /product/register/register_shop 接口的请求。</para>
@@ -39,5 +39,12 @@
[Newtonsoft.Json.JsonProperty("api_openstore_type")]
[System.Text.Json.Serialization.JsonPropertyName("api_openstore_type")]
public int OpenStoreType { get; set; }
/// <summary>
/// 获取或设置授权页 URL。
/// </summary>
[Newtonsoft.Json.JsonProperty("auth_page_url")]
[System.Text.Json.Serialization.JsonPropertyName("auth_page_url")]
public string? AuthPageUrl { get; set; }
}
}

View File

@@ -1,7 +1,8 @@
{
{
"wx_name": "xxx",
"id_card_name": "张三",
"id_card_number": "121321412",
"channel_id": "4",
"api_openstore_type": 1
"api_openstore_type": 1,
"auth_page_url": "url"
}