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

de.comhix.twitch.api.oauth.OAuthResponse Maven / Gradle / Ivy

The newest version!
package de.comhix.twitch.api.oauth;

import com.google.gson.annotations.SerializedName;

import java.util.List;

public class OAuthResponse {
    @SerializedName("scope")
    private List scope;

    @SerializedName("access_token")
    private String accessToken;

    public OAuthResponse(String accessToken, List scope) {
        this.accessToken = accessToken;
        this.scope = scope;
    }

    public List getScope() {
        return scope;
    }

    public void setScope(List scope) {
        this.scope = scope;
    }

    public String getAccessToken() {
        return accessToken;
    }

    public void setAccessToken(String accessToken) {
        this.accessToken = accessToken;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy