using System.Text.Json.Serialization; using System.Collections.Generic; using Topsdk.Util; namespace Topsdk.Top.Ability865.Domain; public class TaobaoOpenAccountTokenValidateTokenInfoExt { /* open account当前token info中open account id对应的open account信息 */ private TaobaoOpenAccountTokenValidateOpenAccount? openAccount; /* oauthOtherInfo */ private TaobaoOpenAccountTokenValidateOAuthOtherInfo? oauthOtherInfo; [JsonPropertyName("open_account")] public TaobaoOpenAccountTokenValidateOpenAccount? OpenAccount { get => openAccount; set => this.openAccount = value; } [JsonPropertyName("oauth_other_info")] public TaobaoOpenAccountTokenValidateOAuthOtherInfo? OauthOtherInfo { get => oauthOtherInfo; set => this.oauthOtherInfo = value; } }