-
Notifications
You must be signed in to change notification settings - Fork 14
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
83 changed files
with
480 additions
and
113 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
5 changes: 5 additions & 0 deletions
5
src/main/java/generated/LolChallengesGameDataChallengeConfig.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
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 generated; | ||
|
||
public class LolChallengesQueue { | ||
|
||
public String gameMode; | ||
public Integer id; | ||
|
||
} |
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
10 changes: 10 additions & 0 deletions
10
src/main/java/generated/LolEndOfGameEndOfGamePlayerReport.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,10 @@ | ||
package generated; | ||
|
||
public class LolEndOfGameEndOfGamePlayerReport { | ||
|
||
public String comment; | ||
public Long gameId; | ||
public String offense; | ||
public String reportedPuuid; | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/generated/LolEndOfGameReportRecipientMode.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,14 @@ | ||
package generated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public enum LolEndOfGameReportRecipientMode { | ||
|
||
@SerializedName("Legacy") | ||
LEGACY, | ||
@SerializedName("Game-Agnostic") | ||
GAME_AGNOSTIC, | ||
@SerializedName("Combined") | ||
COMBINED | ||
|
||
} |
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,8 @@ | ||
package generated; | ||
|
||
public class LolLobbyCustomJoinOptionsDto { | ||
|
||
public String lobbyPassword; | ||
public String team; | ||
|
||
} |
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 |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
public class LolLobbyPartyChatDto { | ||
|
||
public String jid; | ||
public String multiUserChatJWT; | ||
|
||
} |
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,11 @@ | ||
package generated; | ||
|
||
public class LolLootCounter { | ||
|
||
public String direction; | ||
public String groupId; | ||
public String id; | ||
public String name; | ||
public Long startValue; | ||
|
||
} |
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,11 @@ | ||
package generated; | ||
|
||
public class LolLootCounterInstance { | ||
|
||
public String counterId; | ||
public Long counterValue; | ||
public String groupId; | ||
public String ownerId; | ||
public String productId; | ||
|
||
} |
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,11 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolLootEntityInstance { | ||
|
||
public List<LolLootCounterInstance> counters; | ||
public String groupId; | ||
public List<LolLootMilestoneInstance> milestones; | ||
|
||
} |
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,16 @@ | ||
package generated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public enum LolLootGrantStatus { | ||
|
||
@SerializedName("PENDING_FULFILLMENT") | ||
PENDING_FULFILLMENT, | ||
@SerializedName("PENDING_SELECTION") | ||
PENDING_SELECTION, | ||
@SerializedName("FULFILLED") | ||
FULFILLED, | ||
@SerializedName("FAILED") | ||
FAILED | ||
|
||
} |
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 generated; | ||
|
||
public class LolLootGrantorDescription { | ||
|
||
public String appName; | ||
public String entityId; | ||
|
||
} |
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,14 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolLootGroup { | ||
|
||
public List<LolLootCounter> counters; | ||
public String id; | ||
public List<LolLootMilestone> milestones; | ||
public String name; | ||
public String productId; | ||
public LolLootRepeat repeat; | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/generated/LolLootLedgerConfigGdsResource.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 generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolLootLedgerConfigGdsResource { | ||
|
||
public List<LolLootMilestonesLedgerCounterGdsResource> counters; | ||
public String id; | ||
public List<LolLootLedgerConfigMilestoneGdsResource> milestones; | ||
public String name; | ||
public LolLootMilestonesLedgerConfigRepeatGdsResource repeat; | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/generated/LolLootLedgerConfigMilestoneGdsResource.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 generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolLootLedgerConfigMilestoneGdsResource { | ||
|
||
public LolLootMilestonesLedgerCounterGdsResource counter; | ||
public String id; | ||
public String name; | ||
public List<LolLootLedgerConfigMilestonePropertiesGdsResource> properties; | ||
public Long triggerValue; | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/generated/LolLootLedgerConfigMilestonePropertiesGdsResource.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 generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolLootLedgerConfigMilestonePropertiesGdsResource { | ||
|
||
public String description; | ||
public String id; | ||
public String name; | ||
public String rewardStrategy; | ||
public List<LolLootLedgerConfigMilestoneRewardGdsResource> rewards; | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/generated/LolLootLedgerConfigMilestoneRewardGdsResource.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,11 @@ | ||
package generated; | ||
|
||
public class LolLootLedgerConfigMilestoneRewardGdsResource { | ||
|
||
public String id; | ||
public String legacyLootItem; | ||
public LolLootMilestoneLootItemRewardGdsResource lootItemToGrant; | ||
public Integer quantity; | ||
public String rewardType; | ||
|
||
} |
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
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
13 changes: 0 additions & 13 deletions
13
src/main/java/generated/LolLootLootMilestonesDataLedgerConfigGdsResource.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/main/java/generated/LolLootLootMilestonesDataLedgerConfigMilestoneGdsResource.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
...n/java/generated/LolLootLootMilestonesDataLedgerConfigMilestonePropertiesGdsResource.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
.../generated/LolLootLootMilestonesDataLedgerConfigMilestonePropertiesRewardGdsResource.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...ed/LolLootLootMilestonesDataLedgerConfigMilestonePropertiesRewardLootItemGdsResource.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/generated/LolLootLootMilestonesDataLedgerConfigRepeatGdsResource.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.