-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
199 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package dev.dexuby.leagueclient4j.api; | ||
|
||
import dev.dexuby.easycommon.external.jetbrains.annotations.NotNull; | ||
|
||
public record AccountName(@NotNull String gameName, | ||
@NotNull String tagLine) { | ||
} |
21 changes: 0 additions & 21 deletions
21
src/main/java/dev/dexuby/leagueclient4j/api/CurrentSummoner.java
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
src/main/java/dev/dexuby/leagueclient4j/api/ReportCategory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package dev.dexuby.leagueclient4j.api; | ||
|
||
public enum ReportCategory { | ||
|
||
NEGATIVE_ATTITUDE, | ||
VERBAL_ABUSE | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/dev/dexuby/leagueclient4j/api/ReportRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package dev.dexuby.leagueclient4j.api; | ||
|
||
import dev.dexuby.easycommon.external.jetbrains.annotations.NotNull; | ||
import dev.dexuby.easycommon.external.jetbrains.annotations.Nullable; | ||
|
||
import java.util.List; | ||
|
||
public record ReportRequest(@Nullable String comment, | ||
long gameId, | ||
@NotNull List<ReportCategory> categories, | ||
long offenderSummonerId, | ||
@NotNull String offenderPuuid) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package dev.dexuby.leagueclient4j.api; | ||
|
||
import dev.dexuby.easycommon.external.jetbrains.annotations.NotNull; | ||
|
||
public record Summoner(long accountId, | ||
@NotNull String displayName, | ||
@NotNull String gameName, | ||
@NotNull String internalName, | ||
boolean nameChangeFlag, | ||
int percentCompleteForNextLevel, | ||
@NotNull String privacy, | ||
int profileIconId, | ||
@NotNull String puuid, | ||
@NotNull RerollPoints rerollPoints, | ||
long summonerId, | ||
int summonerLevel, | ||
@NotNull String tagLine, | ||
boolean unnamed, | ||
int xpSinceLastLevel, | ||
int xpUntilNextLevel) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters