using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; namespace Topsdk.Top.Ability304.Response; public class TaobaoTopAuthTokenCreateResponse : AbstractTopApiResponse { /* 返回的是json信息,和之前调用https://oauth.taobao.com/tac/token https://oauth.alibaba.com/token 换token返回的字段信息一致 */ private string? tokenResult; [JsonPropertyName("token_result")] public string? TokenResult { get => tokenResult; set => this.tokenResult = value; } }