From 94634d5da177481597c056b366ba09494fc05ec7 Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Wed, 12 Jun 2024 15:08:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(tiktokshop):=20=E9=9A=8F=E5=AE=98=E6=96=B9?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8E=88=E6=9D=83=E8=AE=A4=E8=AF=81=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E6=8E=A5=E5=8F=A3=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Models/Auth/AuthGetTokenResponse.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop/Models/Auth/AuthGetTokenResponse.cs b/src/SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop/Models/Auth/AuthGetTokenResponse.cs index f5a4b20d..a6480691 100644 --- a/src/SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop/Models/Auth/AuthGetTokenResponse.cs +++ b/src/SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop/Models/Auth/AuthGetTokenResponse.cs @@ -64,6 +64,13 @@ public class Data [Newtonsoft.Json.JsonProperty("seller_base_region")] [System.Text.Json.Serialization.JsonPropertyName("seller_base_region")] public string? SellerBaseRegion { get; set; } + + /// + /// 获取或设置已授权的权限列表。 + /// + [Newtonsoft.Json.JsonProperty("granted_permissions")] + [System.Text.Json.Serialization.JsonPropertyName("granted_permissions")] + public string[]? GrantedPermissionList { get; set; } } } }