Код: Выделить всё
net.rithms.riot.dto.Game.RecentGames@35d176f7
Код: Выделить всё
import net.rithms.riot.constant.Region;
import net.rithms.riot.constant.Season;
import net.rithms.riot.api.RiotApi;
import net.rithms.riot.api.RiotApiException;
import net.rithms.riot.dto.Game.RecentGames;
public class Example {
public static void main(String[] args) throws RiotApiException {
RiotApi api = new RiotApi("KEY", Region.EUW);
api.setSeason(Season.CURRENT);
RecentGames recentGames = api.getRecentGames(api.getSummonerByName("Vodkamir Putkin").getId());
System.out.println(recentGames);
}
}
Подробнее здесь: https://stackoverflow.com/questions/437 ... a-riot-api