include_credentials parameter was set to true in the request (only applicable for BYOA apps). In addition to the well-known OAuth fields listed below, this object may contain app-specific custom fields (e.g. base_url).
*/
@@ -199,6 +212,7 @@ private boolean equalTo(Account other) {
&& app.equals(other.app)
&& createdAt.equals(other.createdAt)
&& updatedAt.equals(other.updatedAt)
+ && authorizedScopes.equals(other.authorizedScopes)
&& credentials.equals(other.credentials)
&& expiresAt.equals(other.expiresAt)
&& error.equals(other.error)
@@ -217,6 +231,7 @@ public int hashCode() {
this.app,
this.createdAt,
this.updatedAt,
+ this.authorizedScopes,
this.credentials,
this.expiresAt,
this.error,
@@ -288,6 +303,13 @@ public interface _FinalStage {
_FinalStage updatedAt(OffsetDateTime updatedAt);
+ /**
+ * The OAuth scopes effectively granted to this account. Empty for non-OAuth apps.
+ */ + _FinalStage authorizedScopes(OptionalThe credentials associated with the account, if the include_credentials parameter was set to true in the request (only applicable for BYOA apps). In addition to the well-known OAuth fields listed below, this object may contain app-specific custom fields (e.g. base_url).
The OAuth scopes effectively granted to this account. Empty for non-OAuth apps.
+ * @return Reference to {@code this} so that method calls can be chained together. + */ + @java.lang.Override + public _FinalStage authorizedScopes(ListThe OAuth scopes effectively granted to this account. Empty for non-OAuth apps.
+ */ + @java.lang.Override + @JsonSetter(value = "authorized_scopes", nulls = Nulls.SKIP) + public _FinalStage authorizedScopes(OptionalThe date and time the account was last updated, an ISO 8601 formatted string
* @return Reference to {@code this} so that method calls can be chained together. @@ -626,6 +671,7 @@ public Account build() { app, createdAt, updatedAt, + authorizedScopes, credentials, expiresAt, error,