Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Snapshots of all the latest changes are available in my personal nexus repositor
<dependency>
<groupId>com.stirante</groupId>
<artifactId>lol-client-java-api</artifactId>
<version>1.2.11-SNAPSHOT</version>
<version>1.2.12-SNAPSHOT</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.stirante</groupId>
<artifactId>lol-client-java-api</artifactId>
<version>1.2.11-SNAPSHOT</version>
<version>1.2.12-SNAPSHOT</version>
<name>lol-client-java-api</name>
<description>Simple library which provides access to internal League of Legends Client API.</description>
<url>https://github.com/stirante/lol-client-java-api</url>
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/generated/LolSummonerSummoner.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
package generated;

/**
* League Client endpoint `/lol-summoner/v1/current-summoner` response.
*/
@SuppressWarnings("unused")
public class LolSummonerSummoner {

public Long accountId;
public String displayName;
public String gameName;
public String internalName;
public Boolean nameChangeFlag;
public Integer percentCompleteForNextLevel;
Expand All @@ -13,6 +18,7 @@ public class LolSummonerSummoner {
public LolSummonerSummonerRerollPoints rerollPoints;
public Long summonerId;
public Integer summonerLevel;
public String tagLine;
public Boolean unnamed;
public Long xpSinceLastLevel;
public Long xpUntilNextLevel;
Expand Down