TaobaoOpenAccountTokenValidateOAuthOtherInfo.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability865.Domain;
  5. public class TaobaoOpenAccountTokenValidateOAuthOtherInfo
  6. {
  7. /*
  8. access_token
  9. */
  10. private string? accessToken;
  11. /*
  12. nick
  13. */
  14. private string? nick;
  15. /*
  16. avatarUrl
  17. */
  18. private string? avatarUrl;
  19. /*
  20. id
  21. */
  22. private string? id;
  23. /*
  24. 三方平台类型
  25. */
  26. private long? platformType;
  27. /*
  28. 三方平台的openId
  29. */
  30. private string? openId;
  31. /*
  32. 三方平台的unionId
  33. */
  34. private string? unionId;
  35. [JsonPropertyName("access_token")]
  36. public string? AccessToken
  37. {
  38. get => accessToken;
  39. set => this.accessToken = value;
  40. }
  41. [JsonPropertyName("nick")]
  42. public string? Nick
  43. {
  44. get => nick;
  45. set => this.nick = value;
  46. }
  47. [JsonPropertyName("avatar_url")]
  48. public string? AvatarUrl
  49. {
  50. get => avatarUrl;
  51. set => this.avatarUrl = value;
  52. }
  53. [JsonPropertyName("id")]
  54. public string? Id
  55. {
  56. get => id;
  57. set => this.id = value;
  58. }
  59. [JsonPropertyName("platform_type")]
  60. public long? PlatformType
  61. {
  62. get => platformType;
  63. set => this.platformType = value;
  64. }
  65. [JsonPropertyName("open_id")]
  66. public string? OpenId
  67. {
  68. get => openId;
  69. set => this.openId = value;
  70. }
  71. [JsonPropertyName("union_id")]
  72. public string? UnionId
  73. {
  74. get => unionId;
  75. set => this.unionId = value;
  76. }
  77. }