TaobaoTopAuthTokenCreateResponse.cs 572 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability304.Response;
  5. public class TaobaoTopAuthTokenCreateResponse : AbstractTopApiResponse
  6. {
  7. /*
  8. 返回的是json信息,和之前调用https://oauth.taobao.com/tac/token https://oauth.alibaba.com/token 换token返回的字段信息一致
  9. */
  10. private string? tokenResult;
  11. [JsonPropertyName("token_result")]
  12. public string? TokenResult
  13. {
  14. get => tokenResult;
  15. set => this.tokenResult = value;
  16. }
  17. }