using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; namespace Topsdk.Top.Ability304.Response; public class TaobaoTopAuthTokenRefreshResponse : AbstractTopApiResponse { /* 返回的是json信息 */ private string? tokenResult; [JsonPropertyName("token_result")] public string? TokenResult { get => tokenResult; set => this.tokenResult = value; } }