com.uwetrottmann.trakt5.entities.AccessToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trakt-java Show documentation
Show all versions of trakt-java Show documentation
trakt-java is a retrofit2 based wrapper around the trakt API v2.
package com.uwetrottmann.trakt5.entities;
public class AccessToken {
public String access_token;
public String token_type;
public Integer expires_in;
public String refresh_token;
public String scope;
}