All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dropbox.core.IncludeGrantedScopes Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy