-
Notifications
You must be signed in to change notification settings - Fork 1
API Endpoints
Petar Basta edited this page Oct 6, 2020
·
22 revisions
HTTP Method | URI Path | Description | Input | Output |
---|---|---|---|---|
GET | /predictWinner | Predicts the winner of a match | Game game | Double winPercentage |
Game: {
String[] teamOne, //List of 5 champion names
String[] teamTwo, //List of 5 champion names
Rank rank //Rank the game is being played in
}
Enum Rank: {
Iron, Bronze, Silver, Gold, Platinum, Diamond, Challenger
}