com.dropbox.core.IncludeGrantedScopes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropbox-core-sdk Show documentation
Show all versions of dropbox-core-sdk Show documentation
Official Java client library for the Dropbox API.
package com.dropbox.core;
/**
* If this field is present, Dropbox server will return a token with all scopes user previously
* granted your app.
* Non-mobile apps use it in {@link DbxWebAuth}.
* Mobile apps use it in {@link com.dropbox.core.android.Auth}
*/
public enum IncludeGrantedScopes {
/**
* Use it in user flow.
*/
USER,
/**
* Use it in team flow.
*/
TEAM;
@Override
public String toString() {
return this.name().toLowerCase();
}
}